]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/closure-structural-match-issue-90013.rs
Do not suggest `let_else` if no bindings would be introduced
[rust.git] / src / test / ui / consts / closure-structural-match-issue-90013.rs
1 // Regression test for issue 90013.
2 // check-pass
3 #![feature(inline_const)]
4
5 fn main() {
6     const { || {} };
7 }