diff options
author | Chris Lattner <sabre@nondot.org> | 2008-12-07 00:59:53 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-12-07 00:59:53 +0000 |
commit | 211316faa26af4ce594a10bcfc204124fe363362 (patch) | |
tree | 841ad35003269f99f338f8862676dcdcafbebff1 /test/Sema/typedef-variable-type.c | |
parent | 7fd1df2a87729059a1589c47606f7a43f531c39f (diff) |
a minor grammar fix
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60646 91177308-0d34-0410-b5e6-96231b3b80d8
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 346117ef18..e982637feb 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{{variably modified type declaration not allowed in file scope}} +typedef int (*a)[!.0]; // expected-error{{variably modified type declaration not allowed at file scope}} |