Sign in
rust
/
rust
/
HEAD
/
.
/
tests
/
ui
/
typeck
/
issue-100164.rs
blob: 46ec1dea0c038fd1fa2ca37f4cf88d043f5799c8 [
file
] [
log
] [
blame
]
//@ run-rustfix
const
_A
:
=
123
;
//~^ ERROR: missing type for `const` item
fn
main
()
{
const
_B
:
=
123
;
//~^ ERROR: missing type for `const` item
}