Files
rust/tests/ui/binop/function-comparison-errors-59488.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1011 B
Rust
Raw Normal View History

2025-08-20 14:02:50 -04:00
// https://github.com/rust-lang/rust/issues/59488
2019-04-07 22:51:33 +09:00
fn foo() -> i32 {
42
}
2019-04-12 00:00:27 +09:00
fn bar(a: i64) -> i64 {
43
}
2019-04-19 04:34:54 +00:00
enum Foo {
Bar(usize),
}
2019-04-07 22:51:33 +09:00
fn main() {
foo > 12;
//~^ ERROR binary operation `>` cannot be applied to type `fn() -> i32 {foo}` [E0369]
//~| ERROR mismatched types [E0308]
2019-04-12 00:00:27 +09: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-19 04:34:54 +00:00
let i = Foo::Bar;
assert_eq!(Foo::Bar, i);
//~^ ERROR binary operation `==` cannot be applied to type `fn(usize) -> Foo {Foo::Bar}` [E0369]
//~| ERROR `fn(usize) -> Foo {Foo::Bar}` doesn't implement `Debug` [E0277]
2022-08-16 06:27:22 +00:00
//~| ERROR `fn(usize) -> Foo {Foo::Bar}` doesn't implement `Debug` [E0277]
2019-04-07 22:51:33 +09:00
}