Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
associated-consts
/
associated-const-private-impl.rs
blob: 3ee3134acc42d907ecee1d2079a9ee049aa034f4 [
file
] [
log
] [
blame
] [
edit
]
mod
bar1
{
pub
use
self
::
bar2
::
Foo
;
mod
bar2
{
pub
struct
Foo
;
impl
Foo
{
const
ID
:
i32
=
1
;
}
}
}
fn
main
()
{
assert_eq
!(
1
,
bar1
::
Foo
::
ID
);
//~^ERROR associated constant `ID` is private
}