Home | History | Annotate | Download | only in Misc

Lines Matching defs:I3

94 class I3{};
95 void set3(I3<&V1, &V2>) {};
97 set3(I3<&V3, &V2>());
100 // CHECK-ELIDE-NOTREE: candidate function not viable: no known conversion from 'I3<&V3, [...]>' to 'I3<&V1, [...]>' for 1st argument
102 // CHECK-NOELIDE-NOTREE: candidate function not viable: no known conversion from 'I3<&V3, &V2>' to 'I3<&V1, &V2>' for 1st argument
105 // CHECK-ELIDE-TREE: I3<
110 // CHECK-NOELIDE-TREE: I3<
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>'