rust/src/test/ui/parser/trait-pub-method.rs
2018-12-25 21:08:33 -07:00

8 lines
176 B
Rust

// compile-flags: -Z parse-only
trait Foo {
pub fn foo();
//~^ ERROR expected one of `async`, `const`, `extern`, `fn`, `type`, `unsafe`, or `}`, found
}
fn main() {}