]> git.proxmox.com Git - rustc.git/blob - tests/ui/parser/issues/issue-62660.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / parser / issues / issue-62660.rs
1 // Regression test for issue #62660: if a receiver's type does not
2 // successfully parse, emit the correct error instead of ICE-ing the compiler.
3
4 struct Foo;
5
6 impl Foo {
7 pub fn foo(_: i32, self: Box<Self) {}
8 //~^ ERROR expected one of `!`, `(`, `+`, `,`, `::`, `<`, or `>`, found `)`
9 }
10
11 fn main() {}