mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
13 lines
188 B
Rust
13 lines
188 B
Rust
fn foo<T: PartialEq>(a: &T, b: T) {
|
|
a == b; //~ ERROR E0277
|
|
}
|
|
|
|
fn foo2<T: PartialEq>(a: &T, b: T) where {
|
|
a == b; //~ ERROR E0277
|
|
}
|
|
|
|
fn main() {
|
|
foo(&1, 1);
|
|
foo2(&1, 1);
|
|
}
|