Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
privacy
/
private-field-struct-construction-76077.rs
blob: 7fc3473e8deccfe3f20438c813ab8d490c1e7f8d [
file
] [
log
] [
blame
]
// https://github.com/rust-lang/rust/issues/76077
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
}