blob: 332a3014416b57569985af36858c5b3b54f185a0 (
plain)
1
2
3
4
5
6
7
8
|
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() {}
|