Files
rust/src/test/ui/parser/removed-syntax-static-fn.rs

9 lines
157 B
Rust
Raw Normal View History

struct S;
impl S {
static fn f() {}
2019-07-30 00:11:58 +01:00
//~^ ERROR expected one of `async`, `const`, `crate`, `default`, `extern`, `fn`, `pub`, `type`,
}
fn main() {}