We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 37bc26b + 28f7b90 commit b2a115aCopy full SHA for b2a115a
regression/goto-instrument/const-struct1/main.c
@@ -0,0 +1,13 @@
1
+
2
+struct struct_tag_name
3
+{
4
+ int x;
5
+ float y;
6
+};
7
8
+int main()
9
10
+ const struct struct_tag_name my_struct_var = {.x = 1, .y = 3.15};
11
+ const double z = 4;
12
+ return 0;
13
+}
regression/goto-instrument/const-struct1/test.desc
@@ -0,0 +1,9 @@
+KNWONBUG
+main.c
+"--show-symbol-table"
+^Type\.*: struct struct_tag_name$
+^Type\.*: const double$
+^EXIT=0$
+^SIGNAL=0$
+--
+^warning: ignoring
0 commit comments