2020-09-07 22:27:00 +08:00
|
|
|
//@ edition:2018
|
|
|
|
|
|
|
|
|
|
mod t {
|
|
|
|
|
const pub fn t() {}
|
2024-05-23 10:01:05 -03:00
|
|
|
//~^ ERROR expected one of `async`, `extern`, `fn`, `safe`, or `unsafe`, found keyword `pub`
|
2020-09-18 00:56:04 +08:00
|
|
|
//~| HELP visibility `pub` must come before `const`
|
2020-09-07 22:27:00 +08:00
|
|
|
}
|