summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issue-99910-const-let-mutually-exclusive.fixed
blob: 64ab6f62b77f38530d237d02fd24272623c41f05 (plain)
1
2
3
4
5
6
7
8
// run-rustfix

fn main() {
    const _FOO: i32 = 123;
    //~^ ERROR const` and `let` are mutually exclusive
    const _BAR: i32 = 123;
    //~^ ERROR `const` and `let` are mutually exclusive
}