rust/tests/ui/static/static-method-privacy.rs
2023-01-11 09:32:08 +00:00

11 lines
165 B
Rust

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