8 lines
176 B
Rust
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() {}
|