9 lines
182 B
Rust
9 lines
182 B
Rust
struct Foo<Self>(Self);
|
|
//~^ ERROR expected identifier, found keyword `Self`
|
|
//~^^ ERROR E0392
|
|
|
|
trait Bar<Self> {}
|
|
//~^ ERROR expected identifier, found keyword `Self`
|
|
|
|
fn main() {}
|