blob: b637037f60e8f6167e9a3a8c415d36cf4bd6cfc0 [file] [log] [blame]
mod a {
pub struct S;
impl S {
fn new() -> S { S }
}
}
fn main() {
let _ = a::S::new(); //~ ERROR method `new` is private
}