mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 07:48:55 +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);
|
|
}
|