mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
20 lines
377 B
Rust
20 lines
377 B
Rust
fn first() {
|
|
second == 1 //~ ERROR binary operation
|
|
//~^ ERROR mismatched types
|
|
//~| ERROR mismatched types
|
|
}
|
|
|
|
fn second() {
|
|
first == 1 //~ ERROR binary operation
|
|
//~^ ERROR mismatched types
|
|
//~| ERROR mismatched types
|
|
}
|
|
|
|
fn bar() {
|
|
bar == 1 //~ ERROR binary operation
|
|
//~^ ERROR mismatched types
|
|
//~| ERROR mismatched types
|
|
}
|
|
|
|
fn main() {}
|