summaryrefslogtreecommitdiffstats
path: root/src/test/ui/typeck/issue-100164.rs
blob: 7efb9ac624042fb03f346351cac4abda6e472b53 (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
}