rust/src/test/ui/issues/issue-59488.rs

27 lines
647 B
Rust
Raw Normal View History

2019-04-11 15:00:27 +00:00
// ignore-tidy-linelength
2019-04-07 13:51:33 +00:00
fn foo() -> i32 {
42
}
2019-04-11 15:00:27 +00:00
fn bar(a: i64) -> i64 {
43
}
2019-04-07 13:51:33 +00:00
fn main() {
foo > 12;
//~^ ERROR binary operation `>` cannot be applied to type `fn() -> i32 {foo}` [E0369]
//~| ERROR mismatched types [E0308]
2019-04-11 15:00:27 +00:00
bar > 13;
//~^ ERROR binary operation `>` cannot be applied to type `fn(i64) -> i64 {bar}` [E0369]
//~| ERROR mismatched types [E0308]
foo > foo;
//~^ ERROR binary operation `>` cannot be applied to type `fn() -> i32 {foo}` [E0369]
foo > bar;
//~^ ERROR binary operation `>` cannot be applied to type `fn() -> i32 {foo}` [E0369]
//~| ERROR mismatched types [E0308]
2019-04-07 13:51:33 +00:00
}