summaryrefslogtreecommitdiffstats
path: root/tests/ui/mir/issue-92893.rs
blob: 6127d267ebc8e08c2c04f0e496fec5a79f880ebc (plain)
1
2
3
4
5
6
struct Bug<A = [(); (let a = (), 1).1]> {
    //~^ ERROR expected expression, found `let` statement
    a: A
}

fn main() {}