mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
3ba0139c66
Since they are never set and don't have impact on the test. Or for the cfg-panic tests are already tested with check-cfg.
7 lines
165 B
Rust
7 lines
165 B
Rust
fn foo(x: Option<i32>) {
|
|
if true && x {}
|
|
//~^ ERROR mismatched types
|
|
//~| HELP use `Option::is_some` to test if the `Option` has a value
|
|
}
|
|
|
|
fn main() {}
|