summary refs log tree commit diff
path: root/src/test/ui/parser/duplicate-visibility.rs
blob: 97f19b3da45265a0e2271dde5271c344c361cf2f (plain)
1
2
3
4
5
6
7
8
// ignore-tidy-linelength

fn main() {}

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