rustc/tests/ui/traits/dont-match-error-ty-with-calller-supplied-obligation-issue-121941.rs
2025-02-17 11:14:05 +01:00

7 lines
148 B
Rust

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