]> git.proxmox.com Git - rustc.git/blob - tests/ui/parser/issues/issue-33413.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / parser / issues / issue-33413.rs
1 struct S;
2
3 impl S {
4 fn f(*, a: u8) -> u8 {}
5 //~^ ERROR expected parameter name, found `*`
6 //~| ERROR mismatched types
7 }
8
9 fn main() {}