1 // edition:2018
2 
3 mod t {
t()4     unsafe pub fn t() {}
5     //~^ ERROR expected one of `extern` or `fn`, found keyword `pub`
6     //~| HELP visibility `pub` must come before `unsafe`
7 }
8