7 lines
140 B
Rust
7 lines
140 B
Rust
|
|
// edition:2018
|
||
|
|
|
||
|
|
mod t {
|
||
|
|
const pub fn t() {}
|
||
|
|
//~^ ERROR expected one of `async`, `extern`, `fn`, or `unsafe`, found keyword `pub`
|
||
|
|
}
|