aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/Parser/expressions.c2
1 files changed, 1 insertions, 1 deletions
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;