1// PR c++/48570
2// { dg-do compile { target c++11 } }
3
4constexpr wchar_t c1 = L"hi"[3];	// { dg-error "out of bound" }
5constexpr char16_t c2 = u"hi"[3];	// { dg-error "out of bound" }
6constexpr char32_t c3 = U"hi"[3];	// { dg-error "out of bound" }
7