rust/src/test/compile-fail/static-method-privacy.rs

12 lines
155 B
Rust

mod a {
pub struct S;
impl S {
fn new() -> S { S }
}
}
fn main() {
let _ = a::S::new(); //~ ERROR function `new` is private
}