Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
parser
/
issues
/
issue-99910-const-let-mutually-exclusive.rs
blob: 55cabf533aceddf622e6902eee84565ac7894189 [
file
] [
log
] [
blame
] [
edit
]
//@ run-rustfix
fn
main
()
{
const
let
_FOO
:
i32
=
123
;
//~^ ERROR const` and `let` are mutually exclusive
let
const
_BAR
:
i32
=
123
;
//~^ ERROR `const` and `let` are mutually exclusive
}