diff options
Diffstat (limited to 'test/Sema/typedef-variable-type.c')
-rw-r--r-- | test/Sema/typedef-variable-type.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Sema/typedef-variable-type.c b/test/Sema/typedef-variable-type.c index 4ced926264..346117ef18 100644 --- a/test/Sema/typedef-variable-type.c +++ b/test/Sema/typedef-variable-type.c @@ -1,3 +1,3 @@ // RUN: clang %s -verify -fsyntax-only -pedantic -typedef int (*a)[!.0]; // expected-error{{arrays with static storage duration must have constant integer length}} +typedef int (*a)[!.0]; // expected-error{{variably modified type declaration not allowed in file scope}} |