rust/tests/ui/traits/dont-match-error-ty-with-calller-supplied-obligation-issue-121941.rs

6 lines
116 B
Rust

fn function<T: PartialEq>() {
foo == 2; //~ ERROR cannot find value `foo` in this scope [E0425]
}
fn main() {}