1 impl A {
2     //~^ ERROR cannot find type `A` in this scope
3     fn b(self>
4     //~^ ERROR expected one of `)`, `,`, or `:`, found `>`
5     //~| ERROR expected one of `->`, `;`, `where`, or `{`, found `>`
6 }
7 
main()8 fn main() {}
9