summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/constexpr-wstring2.C
blob: b878918a9f3a44e11bbddc7eaed5bd0f0f7815b0 (plain)
1
2
3
4
5
6
7
// PR c++/48570
// { dg-do compile { target c++11 } }

constexpr wchar_t c1 = L"hi"[3];	// { dg-error "array subscript" }
constexpr char16_t c2 = u"hi"[3];	// { dg-error "array subscript" }
constexpr char32_t c3 = U"hi"[3];	// { dg-error "array subscript" }
constexpr char c4 = u8"hi"[3];		// { dg-error "array subscript" }