aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/Lexer/cxx0x_keyword_as_cxx98.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Lexer/cxx0x_keyword_as_cxx98.cpp b/test/Lexer/cxx0x_keyword_as_cxx98.cpp
index a9ea219724..d87d3dc7fa 100644
--- a/test/Lexer/cxx0x_keyword_as_cxx98.cpp
+++ b/test/Lexer/cxx0x_keyword_as_cxx98.cpp
@@ -1,8 +1,8 @@
// RUN: %clang_cc1 %s -verify -fsyntax-only
-#define thread_local __thread
-thread_local int x;
-#undef thread_local
+#define constexpr const
+constexpr int x = 0;
+#undef constexpr
namespace lib {
struct nullptr_t;