diff options
Diffstat (limited to 'clang/test/Parser/cxx0x-decl.cpp')
-rw-r--r-- | clang/test/Parser/cxx0x-decl.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/test/Parser/cxx0x-decl.cpp b/clang/test/Parser/cxx0x-decl.cpp index b9441fd6813..c91cc9eb76a 100644 --- a/clang/test/Parser/cxx0x-decl.cpp +++ b/clang/test/Parser/cxx0x-decl.cpp @@ -53,9 +53,8 @@ constexpr const int &ConstexprTrailingReturn::f() const { return n; } namespace TestIsValidAfterTypeSpecifier { struct s {} v; -// FIXME: We should accept this once we support thread_local. struct s -thread_local tl; // expected-error {{expected unqualified-id}} +thread_local tl; struct s &r0 = v; |