aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/char8_t-feature-test-macro-2.C
blob: 2d0f9045acfcc0145fbf2be01b90882240027ec3 (plain)
1
2
3
4
5
6
7
8
9
10
// Test that predefined feature test macros are present when -fchar8_t is
// enabled.
// { dg-do compile }
// { dg-options "-fchar8_t" }

#if !defined(__cpp_char8_t)
#  error __cpp_char8_t is not defined!
#elif __cpp_char8_t != 202207
#  error __cpp_char8_t != 202207
#endif