about summary refs log tree commit diff
path: root/tests/ui/typeck/issue-100164.rs
blob: 46ec1dea0c038fd1fa2ca37f4cf88d043f5799c8 (plain)
1
2
3
4
5
6
7
8
9
//@ run-rustfix

const _A: = 123;
//~^ ERROR: missing type for `const` item

fn main() {
    const _B: = 123;
    //~^ ERROR: missing type for `const` item
}