]> git.lizzy.rs Git - rust.git/blob - tests/ui/obfuscated_if_else.rs
Move MSRV tests into the lint specific test files
[rust.git] / tests / ui / obfuscated_if_else.rs
1 // run-rustfix
2
3 #![warn(clippy::obfuscated_if_else)]
4
5 fn main() {
6     true.then_some("a").unwrap_or("b");
7 }