commit | 62f13c9e9e87b14c1d387891575ccf5dfac7b673 | [log] [tgz] |
---|---|---|
author | Sebastian Redl <sebastian.redl@getdesigned.at> | Thu Dec 22 18:58:29 2011 +0000 |
committer | Sebastian Redl <sebastian.redl@getdesigned.at> | Thu Dec 22 18:58:29 2011 +0000 |
tree | 268dd5af0a7a0c81abd0b9f5ef051a6f573d6d2e | |
parent | 10f04a6267eb07d3be00db1fd0369e1398f5d0a8 [diff] [blame] |
Fix a parser bug that prevented it from correctly parsing explicit construct expressoins of the form T{args}. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@147155 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/SemaCXX/cxx0x-initializer-constructor.cpp b/test/SemaCXX/cxx0x-initializer-constructor.cpp index 7eff4c4..c0e5010 100644 --- a/test/SemaCXX/cxx0x-initializer-constructor.cpp +++ b/test/SemaCXX/cxx0x-initializer-constructor.cpp
@@ -52,7 +52,7 @@ } void inline_init() { - //(void) C{1, 1.0}; FIXME: inline initialization + (void) C{1, 1.0}; (void) new C{1, 1.0}; }