rust/tests/ui/parser/issues/issue-58856-1.rs
2023-01-11 09:32:08 +00:00

9 lines
213 B
Rust

impl A {
//~^ ERROR cannot find type `A` in this scope
fn b(self>
//~^ ERROR expected one of `)`, `,`, or `:`, found `>`
//~| ERROR expected one of `->`, `where`, or `{`, found `>`
}
fn main() {}