diff options
-rw-r--r-- | test/Analysis/array-struct.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/Analysis/array-struct.c b/test/Analysis/array-struct.c index 5f7331efa2..1045bdb645 100644 --- a/test/Analysis/array-struct.c +++ b/test/Analysis/array-struct.c @@ -64,3 +64,7 @@ void f8() { int a[10]; a[sizeof(a) - 1] = 1; } + +void f9() { + struct s a[10]; +} |