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

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

fn main() {}