blob: bebb4a9021aab4795cd32311c3c53c85059e97f9 [file] [log] [blame]
struct Struct<P1> {
field: P1,
}
type Alias<'a> = Struct<&'a Self>;
//~^ ERROR cannot find type `Self` in this scope [E0411]
fn main() {}