summaryrefslogtreecommitdiff
path: root/tests/ui/type/missing-let-in-binding.rs
blob: c0f91d98ff31f6ddaa560080414fc8a4495b8a49 (plain)
1
2
3
4
5
// run-rustfix
fn main() {
    let mut _foo: i32 = 1;
    _foo: i32 = 4; //~ ERROR expected identifier, found `:`
}