aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp1z/array-prvalue1.C
blob: e837d3253a1c4ea5d9613f906e0500bb527bba4b (plain)
1
2
3
4
5
6
7
// PR c++/94264
// { dg-do compile { target c++17 } }

int main() {
  using T = int[];
  T{1, 2} == nullptr;
}