Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
privacy
/
issue-75906.rs
blob: 710039d79e77b2cd741664fdecb5f305e1443c41 [
file
] [
log
] [
blame
] [
edit
]
mod
m
{
pub
struct
Foo
{
x
:
u8
}
pub
struct
Bar
(
u8
);
}
use
m
::{
Foo
,
Bar
};
fn
main
()
{
let
x
=
Foo
{
x
:
12
};
let
y
=
Bar
(
12
);
//~^ ERROR cannot initialize a tuple struct which contains private fields [E0423]
}