diff options
-rw-r--r-- | test/FixIt/fixit-cxx0x.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/test/FixIt/fixit-cxx0x.cpp b/test/FixIt/fixit-cxx0x.cpp index 8c404b6611..ae0c0a3373 100644 --- a/test/FixIt/fixit-cxx0x.cpp +++ b/test/FixIt/fixit-cxx0x.cpp @@ -40,15 +40,10 @@ namespace Constexpr { // FIXME: Provide FixIts for static data members too. #if 0 struct S { - static constexpr int a = 0; - static constexpr int b; // xpected-error {{requires an initializer}} // -> const int b; }; - constexpr int S::a; // xpected-error {{requires an initializer}} - // -> const int S::a; - constexpr int S::b = 0; #endif |