rust/tests/ui/type-alias/issue-62364-self-ty-arg.rs

9 lines
144 B
Rust

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