From 19f4440f5b90d0c00d217b022560fbee4310eaf1 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 25 Oct 2006 03:14:54 +0000 Subject: [PATCH] new testcase llvm-svn: 39040 --- clang/test/Parser/CompoundStmtScope.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 clang/test/Parser/CompoundStmtScope.c diff --git a/clang/test/Parser/CompoundStmtScope.c b/clang/test/Parser/CompoundStmtScope.c new file mode 100644 index 000000000000..1e1aa79f0b39 --- /dev/null +++ b/clang/test/Parser/CompoundStmtScope.c @@ -0,0 +1,8 @@ +// RUN: not clang %s -fsyntax-only + +int foo() { + { + typedef float X; + } + X Y; +}