aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.6/gcc/testsuite/g++.dg/cpp0x/constexpr-wstring2.C
blob: 4fc8980ef96c06e574a343671c4f80c18d2c2878 (plain)
1
2
3
4
5
6
7
// PR c++/48570
// { dg-do compile }
// { dg-options -std=c++0x }

constexpr wchar_t c1 = L"hi"[3];	// { dg-error "out of bound" }
constexpr char16_t c2 = u"hi"[3];	// { dg-error "out of bound" }
constexpr char32_t c3 = U"hi"[3];	// { dg-error "out of bound" }