]> git.lizzy.rs Git - rust.git/blob - tests/ui/consts/nested_erroneous_ctfe.rs
Rollup merge of #106949 - compiler-errors:is-poly, r=BoxyUwU
[rust.git] / tests / ui / consts / nested_erroneous_ctfe.rs
1 fn main() {
2     [9; || [9; []]];
3     //~^ ERROR: mismatched types
4 }