Lines Matching refs:I2
70 class I2{};
71 void set2(I2<int, int>) {};
73 set2(I2<double, int, int>());
76 // CHECK-ELIDE-NOTREE: candidate function not viable: no known conversion from 'I2<double, [...], int>' to 'I2<int, [...], (default) void>' for 1st argument
78 // CHECK-NOELIDE-NOTREE: candidate function not viable: no known conversion from 'I2<double, int, int>' to 'I2<int, int, (default) void>' for 1st argument
81 // CHECK-ELIDE-TREE: I2<
87 // CHECK-NOELIDE-TREE: I2<
962 int i1, i2, i3;
979 B<i1, i2, i3> b2;
980 B<i2, i3> b3;
983 // CHECK-ELIDE-NOTREE: no known conversion from 'B<[...], (no argument), (no argument)>' to 'B<[...], i2, i3>'
986 // CHECK-ELIDE-NOTREE: no known conversion from 'B<(default) i1, (no argument)>' to 'B<i2, i3>'
988 B<i1, i2, i3> b4 = b1;
989 // CHECK-ELIDE-NOTREE: no viable conversion from 'B<[...], (no argument), (no argument)>' to 'B<[...], i2, i3>'
990 B<i2, i3> b5 = b1;
991 // CHECK-ELIDE-NOTREE: no viable conversion from 'B<(default) i1, (no argument)>' to 'B<i2, i3>'