summaryrefslogtreecommitdiffstats
path: root/tests/ui/mir/issue-112269.rs
blob: 8b9b16647e4d6e59cfc0ef8dbf5e04e17a9b963c (plain)
1
2
3
4
5
6
7
8
9
pub fn main() {
    const x: i32 = 4;
    let x: i32 = 3;
    //~^ ERROR refutable pattern in local binding

    const y: i32 = 3;
    let y = 4;
    //~^ ERROR refutable pattern in local binding
}