]> git.proxmox.com Git - rustc.git/blob - tests/ui/coercion/coerce-reborrow-multi-arg-fail.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / coercion / coerce-reborrow-multi-arg-fail.rs
1 fn test<T>(_a: T, _b: T) {}
2
3 fn main() {
4 test(&mut 7, &7);
5 //~^ mismatched types
6 }