Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
parser
/
public-instead-of-pub-3.fixed
blob: dd85df4009da86b652a1f0d60e313cea66868679 [
file
] [
log
] [
blame
] [
edit
]
//@ run-rustfix
mod test
{
pub
const
X
:
i32
=
123
;
//~^ ERROR expected one of `!` or `::`, found keyword `const`
}
fn main
()
{
println
!(
"{}"
,
test
::
X
);
}