rust/tests/ui/issues/issue-62375.rs

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

10 lines
152 B
Rust
Raw Normal View History

2019-07-04 10:48:47 -04:00
enum A {
Value(())
}
fn main() {
let a = A::Value(());
a == A::Value;
//~^ ERROR binary operation `==` cannot be applied to type `A`
}