rust/tests/ui/privacy/useless-pub.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
339 B
Rust
Raw Normal View History

struct A { pub i: isize }
pub trait E {
fn foo(&self);
}
impl E for A {
pub fn foo(&self) {} //~ ERROR: visibility qualifiers are not permitted here
}
2016-03-03 23:31:44 +00:00
enum Foo {
V1 { pub f: i32 }, //~ ERROR visibility qualifiers are not permitted here
V2(pub i32), //~ ERROR visibility qualifiers are not permitted here
2016-03-03 23:31:44 +00:00
}
fn main() {}