summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/bad-pointer-type.rs
blob: 59e5e0c5d31db6fa0b91d199bc9387febfce7b54 (plain)
1
2
3
4
5
fn foo(_: *()) {
    //~^ ERROR expected mut or const in raw pointer type
}

fn main() {}