2021-10-22 15:39:33 -05:00
|
|
|
//@ check-pass
|
|
|
|
|
|
|
|
// ICE found in https://github.com/rust-lang/rust/issues/83123
|
|
|
|
|
|
|
|
pub struct Attribute;
|
|
|
|
|
2023-10-31 08:58:03 -05:00
|
|
|
pub struct Map<'hir> {
|
|
|
|
lt: &'hir (),
|
|
|
|
}
|
|
|
|
|
2021-10-22 15:39:33 -05:00
|
|
|
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] {
|
|
|
|
&[]
|
|
|
|
}
|
|
|
|
}
|