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

9 lines
137 B
Rust
Raw Normal View History

struct S;
impl S {
//~^ ERROR missing `fn`, `type`, or `const` for associated-item declaration
static fn f() {}
}
fn main() {}