blob: 633326931ab7e2486ac4d65906b8fda115d65b26 (
plain)
1
2
3
4
5
6
7
8
9
|
// { dg-do compile { target c++17 } }
#ifndef __cpp_unicode_characters
#error __cpp_unicode_characters not defined
#endif
#if __cpp_unicode_characters != 201411
#error Wrong value for __cpp_unicode_characters
#endif
|