mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-28 05:34:45 +00:00
12 lines
179 B
Rust
12 lines
179 B
Rust
//! 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() {}
|