Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:arr

23   constexpr T() : arr() {}
24 int arr[4];
32 constexpr U u1(&u1.arr[2]);
39 static_assert(test_printing(12, 39.762, 3 + 4i, 12.9 + 3.6i, &u2.arr[4], u2.another.arr[2], (vector_int){5, 1, 2, 3}, u1) == 0, ""); // \
41 expected-note {{in call to 'test_printing(12, 3.976200e+01, 3+4i, 1.290000e+01+3.600000e+00i, &u2.T::arr[4], u2.another.arr[2], {5, 1, 2, 3}, {{{}}, {{}}, &u1.T::arr[2]})'}}
46 constexpr V() : arr{[255] = 42} {}
47 constexpr V(const V &v) : arr{[255] = 42} {}
48 int arr[256];
52 constexpr int passLargeArray(V v) { return get(v.arr+256); } // expected-note {{in call to 'get(&v.arr[256])'}}