11 lines
231 B
Rust
11 lines
231 B
Rust
// compile-flags: -Z continue-parse-after-error
|
|
|
|
struct Foo<Self>(Self);
|
|
//~^ ERROR expected identifier, found keyword `Self`
|
|
//~^^ ERROR E0392
|
|
|
|
trait Bar<Self> {}
|
|
//~^ ERROR expected identifier, found keyword `Self`
|
|
|
|
fn main() {}
|