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

extern {
    pub pub fn foo();
    //~^ ERROR visibility `pub` is not followed by an item
    //~| ERROR non-item in item list
}