blob: dad63f137c0f420ba5a94a0436d586bc810b69dc [file] [log] [blame] [edit]
//@ edition:2018
mod t {
const pub fn t() {}
//~^ ERROR expected one of `async`, `extern`, `fn`, `safe`, or `unsafe`, found keyword `pub`
//~| HELP visibility `pub` must come before `const`
}