rust/tests/rustdoc-ui/recursive-deref-ice.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
340 B
Rust
Raw Normal View History

2021-10-22 22:39:33 +02:00
// check-pass
// ICE found in https://github.com/rust-lang/rust/issues/83123
pub struct Attribute;
pub struct Map<'hir> {}
impl<'hir> Map<'hir> {
pub fn attrs(&self) -> &'hir [Attribute] { &[] }
}
pub struct List<T>(T);
impl<T> std::ops::Deref for List<T> {
type Target = [T];
fn deref(&self) -> &[T] {
&[]
}
}