We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f09851c commit 8b2d7b4Copy full SHA for 8b2d7b4
regression/ansi-c/Universal_characters1/main.c
@@ -0,0 +1,18 @@
1
+int identifier_\u0201_;
2
+int \u0201_abc;
3
+
4
+#define STATIC_ASSERT(condition) \
5
+ int some_array##__LINE__[(condition) ? 1 : -1];
6
7
+char my_string[]="\u0201";
8
+STATIC_ASSERT(sizeof(my_string)==3);
9
10
+// also as character literal
11
+STATIC_ASSERT(L'\u0201'==0x0201);
12
13
+int main()
14
+{
15
+ identifier_ȁ_=10;
16
+ ȁ_abc=10;
17
+}
18
regression/ansi-c/Universal_characters1/test.desc
@@ -0,0 +1,8 @@
+KNOWNBUG
+main.c
+^EXIT=0$
+^SIGNAL=0$
+--
+^warning: ignoring
+^CONVERSION ERROR$
0 commit comments