mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 16:54:01 +00:00
96b8225d8d
Fixes #121941
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() {}
|