summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/nested_erroneous_ctfe.rs
blob: 1ec271401fb4c34e906cddce0bb6fa7011760b18 (plain)
1
2
3
4
fn main() {
    [9; || [9; []]];
    //~^ ERROR: mismatched types
}