libcpp/
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / pr64626-1.C
blob07af9f0a015f94ed3efcf1fc76610dd8aaad8046
1 // PR c++/64626
2 // { dg-do compile { target c++14 } }
4 #define STR(s) #s
5 int
6 main()
8   int i = 1'2;
9   const char *s[3]
10   {
11     STR(1' '),
12     STR(..),
13     STR(%:%),
14   };
16 #if 0
17 1' '
19 %:%
20 #endif