about summary refs log tree commit diff
path: root/tests/ui/coercion/coerce-reborrow-multi-arg.rs
blob: 77e1e91bb5fcab77afe98e92f7d9e24394bd3ff0 (plain)
1
2
3
4
5
6
7
8
9
//@ build-pass
fn test<T>(_a: T, _b: T) {}

fn main() {
    test(&7, &7);
    test(&7, &mut 7);
    test::<&i32>(&mut 7, &7);
    test::<&i32>(&mut 7, &mut 7);
}