summary refs log tree commit diff
path: root/src/test/ui/parser/issue-33413.rs
blob: 2ec86958174a4a9d95130b7e5869f8d1ccc18133 (plain)
1
2
3
4
5
6
7
8
struct S;

impl S {
    fn f(*, a: u8) -> u8 {}
    //~^ ERROR expected argument name, found `*`
}

fn main() {}