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 ca00cb3 commit 43d2e10Copy full SHA for 43d2e10
clang/test/3C/qualifiers.c
@@ -55,11 +55,13 @@ void mixed() {
55
56
struct qualifier_struct { int *a; };
57
void structs() {
58
+ struct qualifier_struct a0;
59
static struct qualifier_struct a;
60
volatile static struct qualifier_struct b;
61
const static struct qualifier_struct *c;
62
const extern struct qualifier_struct d;
63
}
64
+//CHECK: struct qualifier_struct a0 = {};
65
//CHECK: static struct qualifier_struct a = {};
66
//CHECK: static volatile struct qualifier_struct b = {};
67
//CHECK: static _Ptr<const struct qualifier_struct> c = ((void *)0);
0 commit comments