]> git.lizzy.rs Git - rust.git/blob - src/test/ui/pattern/issue-82290.rs
Auto merge of #84589 - In-line:zircon-thread-name, r=JohnTitor
[rust.git] / src / test / ui / pattern / issue-82290.rs
1 #![feature(let_chains)] //~ WARN the feature `let_chains` is incomplete
2
3 fn main() {
4     if true && let x = 1 { //~ ERROR `let` expressions are not supported here
5         let _ = x;
6     }
7 }