diff options
-rw-r--r-- | test/CFrontend/2003-11-16-StaticArrayInit.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/CFrontend/2003-11-16-StaticArrayInit.c b/test/CFrontend/2003-11-16-StaticArrayInit.c new file mode 100644 index 0000000000..399b4e8a8e --- /dev/null +++ b/test/CFrontend/2003-11-16-StaticArrayInit.c @@ -0,0 +1,6 @@ +void bar () { + static char x[10]; + static char *xend = x + 10; +} + + |