summaryrefslogtreecommitdiffstats
path: root/src/test/ui/ufcs/ufcs-qpath-self-mismatch.rs
blob: ec86213f8629df02bc4efa51d6d4bbdb0469eacc (plain)
1
2
3
4
5
6
7
8
9
10
11
use std::ops::Add;

fn main() {
    <i32 as Add<u32>>::add(1, 2);
    //~^ ERROR cannot add `u32` to `i32`
    //~| ERROR cannot add `u32` to `i32`
    <i32 as Add<i32>>::add(1u32, 2);
    //~^ ERROR mismatched types
    <i32 as Add<i32>>::add(1, 2u32);
    //~^ ERROR mismatched types
}