aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Parser/typeof.c
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/Parser/typeof.c')
-rw-r--r--clang/test/Parser/typeof.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/clang/test/Parser/typeof.c b/clang/test/Parser/typeof.c
deleted file mode 100644
index 3ea2775..0000000
--- a/clang/test/Parser/typeof.c
+++ /dev/null
@@ -1,19 +0,0 @@
-// RUN: clang -fsyntax-only -verify %s
-
-typedef int TInt;
-
-static void test() {
- int *pi;
-
- int typeof (int) aIntInt; // expected-error{{cannot combine with previous 'int' declaration specifier}}
- short typeof (int) aShortInt; // expected-error{{'short typeof' is invalid}}
- int int ttt; // expected-error{{cannot combine with previous 'int' declaration specifier}}
- typeof(TInt) anInt;
- short TInt eee; // expected-error{{parse error}}
- void ary[7] fff; // expected-error{{array has incomplete element type 'void'}} expected-error{{parse error}}
- typeof(void ary[7]) anIntError; // expected-error{{expected ')'}} expected-error{{to match this '('}}
- typeof(const int) aci;
- const typeof (*pi) aConstInt;
- int xx;
- int *i;
-}