blob: 8a8c8240c2d0854f9f2f5bda032f6eb54b491e54 [file] [log] [blame]
//! Regression test for https://github.com/rust-lang/rust/issues/10545
mod a {
struct S;
impl S { }
}
fn foo(_: a::S) { //~ ERROR: struct `S` is private
}
fn main() {}