// Test that UTF-8 string literals have type const char[] if -fchar8_t is not enabled. // { dg-do compile { target c++11 } } // { dg-options "-fno-char8_t" } template struct is_same { static const bool value = false; }; template struct is_same { static const bool value = true; }; static_assert(is_same::value, "Error");