aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/22-decl.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/22-decl.c')
-rw-r--r--test/22-decl.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/22-decl.c b/test/22-decl.c
index ddb1a57..a14b776 100644
--- a/test/22-decl.c
+++ b/test/22-decl.c
@@ -8,6 +8,12 @@ int a[];
int a[100];
int a[];
+static unsigned local;
+extern unsigned local;
+
+typedef struct foo { char r; } foo_t;
+static const foo_t T = ((foo_t) { 3 });
+
int main() {
}