Remove FIXME obsoleted by change r141279 for PR11067.

llvm-svn: 141351
This commit is contained in:
Richard Smith 2011-10-07 03:16:33 +00:00
parent 0710e551ef
commit 779b8b0f33
1 changed files with 0 additions and 5 deletions

View File

@ -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