aboutsummaryrefslogtreecommitdiff
path: root/test/SemaCXX/vartemplate-lambda.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/SemaCXX/vartemplate-lambda.cpp')
-rw-r--r--test/SemaCXX/vartemplate-lambda.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SemaCXX/vartemplate-lambda.cpp b/test/SemaCXX/vartemplate-lambda.cpp
index 5b91e232e3a6..6744968bcc4d 100644
--- a/test/SemaCXX/vartemplate-lambda.cpp
+++ b/test/SemaCXX/vartemplate-lambda.cpp
@@ -8,7 +8,7 @@ template<typename T> auto v1 = [](int a = T(1)) { return a; }();
struct S {
template<class T>
- static constexpr T t = [](int f = T(7)){return f;}(); // expected-error{{constexpr variable 't<int>' must be initialized by a constant expression}} expected-error{{a lambda expression may not appear inside of a constant expression}} expected-note{{cannot be used in a constant expression}}
+ static constexpr T t = [](int f = T(7)){return f;}(); // expected-error{{constexpr variable 't<int>' must be initialized by a constant expression}} expected-note{{cannot be used in a constant expression}}
};
template <typename X>