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

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

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