rust/tests/ui/error-codes/E0277-3.rs

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

9 lines
110 B
Rust
Raw Normal View History

2022-03-31 14:58:45 +00:00
fn foo<T: PartialEq>(_: T) {}
struct S;
fn main() {
foo(S);
//~^ ERROR can't compare `S` with `S`
}