Home | History | Annotate | Download | only in Misc

Lines Matching refs:I1

40 class I1{};
41 void set1(I1<1,2,3,4,2,3,4,3>) {};
43 set1(I1<1,2,3,4,2,2,4,3,7>());
46 // CHECK-ELIDE-NOTREE: candidate function not viable: no known conversion from 'I1<[5 * ...], 2, [2 * ...], 7>' to 'I1<[5 * ...], 3, [2 * ...], (no argument)>' for 1st argument
48 // CHECK-NOELIDE-NOTREE: candidate function not viable: no known conversion from 'I1<1, 2, 3, 4, 2, 2, 4, 3, 7>' to 'I1<1, 2, 3, 4, 2, 3, 4, 3, (no argument)>' for 1st argument
51 // CHECK-ELIDE-TREE: I1<
58 // CHECK-NOELIDE-TREE: I1<
962 int i1, i2, i3;
964 template <int& = i1, int& ...> struct B {};
979 B<i1, i2, i3> b2;
986 // CHECK-ELIDE-NOTREE: no known conversion from 'B<(default) i1, (no argument)>' to 'B<i2, i3>'
988 B<i1, i2, i3> b4 = b1;
991 // CHECK-ELIDE-NOTREE: no viable conversion from 'B<(default) i1, (no argument)>' to 'B<i2, i3>'