]> git.lizzy.rs Git - rust.git/blob - tests/ui/consts/nested_erroneous_ctfe.rs
Rollup merge of #106951 - tmiasko:rm-simplify-initial, r=oli-obk
[rust.git] / tests / ui / consts / nested_erroneous_ctfe.rs
1 fn main() {
2     [9; || [9; []]];
3     //~^ ERROR: mismatched types
4 }