summaryrefslogtreecommitdiffstats
path: root/src/test/ui/on-unimplemented/impl-substs.rs
blob: fe9c50ec3d4a2cf34e92d3c09e8c50a0659d6e27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![feature(rustc_attrs)]

trait Foo<A> {
    fn foo(self);
}

#[rustc_on_unimplemented = "an impl did not match: {A} {B} {C}"]
impl<A, B, C> Foo<A> for (A, B, C) {
    fn foo(self) {}
}

fn main() {
    Foo::<usize>::foo((1i32, 1i32, 1i32));
    //~^ ERROR the trait bound `(i32, i32, i32): Foo<usize>` is not satisfied
}