aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp/pr53690.C
blob: ea9135975137bae81bc5d388c3f19530e953d089 (plain)
1
2
3
4
5
6
7
// PR c++/53690
// { dg-do compile { target c++11 } }

int array1[U'\U00000000' == 0 ? 1 : -1];
int array2[U'\u0000' == 0 ? 1 : -1];
int array3[u'\U00000000' == 0 ? 1 : -1];
int array4[u'\u0000' == 0 ? 1 : -1];