blob: 7861736689cbbbd677395257f470d693ba9fced8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Test that UTF-8 character literals have type char8_t if -fchar8_t is enabled.
// { dg-do compile }
// { dg-options "-std=c++17 -fchar8_t" }
template<typename T1, typename T2>
struct is_same
{ static const bool value = false; };
template<typename T>
struct is_same<T, T>
{ static const bool value = true; };
static_assert(is_same<decltype(u8'x'), char8_t>::value, "Error");
|