Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
privacy
/
auxiliary
/
issue-17718-const-privacy.rs
blob: 93cf4bf3ecce345993ec3053cbd0b3dabbd4f673 [
file
] [
log
] [
blame
] [
edit
]
pub
use
foo
::
FOO2
;
pub
const
FOO
:
usize
=
3
;
const
BAR
:
usize
=
3
;
mod
foo
{
pub
const
FOO2
:
usize
=
3
;
}