diff options
Diffstat (limited to 'test/Sema/vla.c')
-rw-r--r-- | test/Sema/vla.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Sema/vla.c b/test/Sema/vla.c index 7ddd432..ebf9b88 100644 --- a/test/Sema/vla.c +++ b/test/Sema/vla.c @@ -54,3 +54,9 @@ int (*pr2044c(void))[pr2044b]; // expected-error {{variably modified type}} const int f5_ci = 1; void f5() { char a[][f5_ci] = {""}; } // expected-error {{variable-sized object may not be initialized}} + +// PR5185 +void pr5185(int a[*]); +void pr5185(int a[*]) // expected-error {{variable length array must be bound in function definition}} +{ +} |