Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
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
);
}