rust/src/test/ui/issues/issue-36638.rs
2018-12-25 21:08:33 -07:00

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() {}