summary refs log tree commit diff
path: root/src/test/ui/parser/extern-no-fn.rs
blob: c37ddd69ce53c1ca7057a93d2001141783156419 (plain)
1
2
3
4
5
6
extern { //~ ERROR missing `fn`, `type`, or `static` for extern-item declaration
    f();
}

fn main() {
}