]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/issue-62660.rs
Merge commit 'bf1c6f9871f430e284b17aa44059e0d0395e28a6' into clippyup
[rust.git] / src / test / ui / parser / 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() {}