summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issue-100197-mut-let.rs
blob: 71103813a6ed39f282c6d0d3182fe03f31fa1aa3 (plain)
1
2
3
4
5
6
// run-rustfix

fn main() {
    mut let _x = 123;
    //~^ ERROR invalid variable declaration
}