]> granicus.if.org Git - clang/commitdiff
reenable this.
authorChris Lattner <sabre@nondot.org>
Sat, 25 Aug 2007 05:31:19 +0000 (05:31 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 25 Aug 2007 05:31:19 +0000 (05:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41397 91177308-0d34-0410-b5e6-96231b3b80d8

test/Parser/expressions.c

index 1fb2d8968c1f07c750484ead9aa0726627c73eec..3fb8c1c89df950dcbadca379e63ae554ee1ed2cb 100644 (file)
@@ -5,7 +5,7 @@ void test1() {
   if (sizeof (int));       // sizeof type
 
   (int)4;   // cast.
-  //(int){4}; // compound literal.
+  (int){4}; // compound literal.
 
   // FIXME: change this to the struct version when we can.
   //int A = (struct{ int a;}){ 1}.a;