rust/src/test/ui/parser/trait-pub-method.rs

7 lines
143 B
Rust

trait Foo {
pub fn foo();
//~^ ERROR expected one of `async`, `const`, `extern`, `fn`, `type`, `unsafe`, or `}`, found
}
fn main() {}