rust/tests/ui/ufcs/ufcs-qpath-self-mismatch.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
288 B
Rust
Raw Normal View History

use std::ops::Add;
fn main() {
<i32 as Add<u32>>::add(1, 2);
2018-01-23 03:13:06 +00:00
//~^ 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
}