about summary refs log tree commit diff
path: root/src/test/ui/parser/removed-syntax-static-fn.rs
blob: df3964196b8a215deee653021d36c300aee85de1 (plain)
1
2
3
4
5
6
7
8
9
10
// ignore-tidy-linelength

struct S;

impl S {
    static fn f() {}
}
//~^^ ERROR expected one of `async`, `const`, `crate`, `default`, `existential`, `extern`, `fn`, `pub`, `type`,

fn main() {}