rust/src/test/compile-fail/private-item-simple.rs

10 lines
106 B
Rust

mod a {
#[legacy_exports];
priv fn f() {}
}
fn main() {
a::f(); //~ ERROR unresolved name
}