From: Chris Lattner Date: Sat, 25 Aug 2007 05:31:19 +0000 (+0000) Subject: reenable this. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e45fa6af52d0a99ad3c6e4b58a4e4c351c987b87;p=clang reenable this. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41397 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Parser/expressions.c b/test/Parser/expressions.c index 1fb2d8968c..3fb8c1c89d 100644 --- a/test/Parser/expressions.c +++ b/test/Parser/expressions.c @@ -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;