rust/tests/ui/parser/issues/issue-87694-misplaced-pub.rs
2024-06-04 14:19:42 -03:00

6 lines
265 B
Rust

const pub fn test() {}
//~^ ERROR expected one of `async`, `extern`, `fn`, `safe`, or `unsafe`, found keyword `pub`
//~| NOTE expected one of `async`, `extern`, `fn`, `safe`, or `unsafe`
//~| HELP visibility `pub` must come before `const`
//~| SUGGESTION pub const