mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
11 lines
201 B
Rust
11 lines
201 B
Rust
pub mod foo {
|
|
pub struct Foo {
|
|
you_cant_use_this_field: bool,
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
foo::Foo {};
|
|
//~^ ERROR cannot construct `Foo` with struct literal syntax due to private fields
|
|
}
|