mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-29 10:13:54 +00:00
6 lines
116 B
Rust
6 lines
116 B
Rust
|
fn function<T: PartialEq>() {
|
||
|
foo == 2; //~ ERROR cannot find value `foo` in this scope [E0425]
|
||
|
}
|
||
|
|
||
|
fn main() {}
|