summary refs log tree commit diff
path: root/src/test/ui/parser/duplicate-visibility.rs
blob: 87ba230eab556905450bcfd7ea25876a45d4374b (plain)
1
2
3
4
5
6
fn main() {}

extern "C" {
    pub pub fn foo();
    //~^ ERROR expected one of `(`, `async`, `const`, `default`, `extern`, `fn`, `pub`, `unsafe`, or `use`, found keyword `pub`
}