mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-17 17:33:07 +00:00
![Urgau](/assets/img/avatar_default.png)
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.
8 lines
165 B
Rust
8 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() {}
|