mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-28 10:46:43 +00:00
12 lines
201 B
Rust
12 lines
201 B
Rust
//! Regression test for https://github.com/rust-lang/rust/issues/13407
|
|
|
|
mod A {
|
|
struct C;
|
|
}
|
|
|
|
fn main() {
|
|
A::C = 1;
|
|
//~^ ERROR: mismatched types
|
|
//~| ERROR: unit struct `C` is private
|
|
}
|