rust/tests/ui/coercion/coerce-reborrow-multi-arg-fail.rs
2025-04-08 23:06:31 +03:00

7 lines
97 B
Rust

fn test<T>(_a: T, _b: T) {}
fn main() {
test(&mut 7, &7);
//~^ ERROR mismatched types
}