blob: 5c926dee05b21392f387b2990ffab83985275b3b [file] [log] [blame] [edit]
mod a {
struct A;
impl Default for A {
pub fn default() -> A { //~ ERROR visibility qualifiers are not permitted here
A
}
}
}
fn main() {
a::A::default();
//~^ ERROR struct `A` is private
}