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