]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/bad-pointer-type.rs
Rollup merge of #67005 - andrewbanchich:master, r=joshtriplett
[rust.git] / src / test / ui / parser / bad-pointer-type.rs
1 fn foo(_: *()) {
2     //~^ ERROR expected mut or const in raw pointer type
3 }
4
5 fn main() {}