summary refs log tree commit diff
path: root/src/test/ui/parser/removed-syntax-static-fn.rs
blob: 0caddb9855d83224a7d0eadb56ff329ede03e5c9 (plain)
1
2
3
4
5
6
7
8
struct S;

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

fn main() {}