2012-02-09 16:15:36 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -std=c++11 %s -verify
|
2018-05-15 04:15:04 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -std=c++14 %s -verify
|
|
|
|
// RUN: %clang_cc1 -fsyntax-only -std=c++17 %s -verify
|
2012-02-09 16:15:36 +08:00
|
|
|
|
|
|
|
void test_nonaggregate(int i) {
|
2014-12-11 04:04:48 +08:00
|
|
|
auto lambda = [i]() -> void {}; // expected-note 2{{candidate constructor}}
|
2012-02-09 16:15:36 +08:00
|
|
|
decltype(lambda) foo = { 1 }; // expected-error{{no matching constructor}}
|
2018-05-15 04:15:04 +08:00
|
|
|
static_assert(__is_literal(decltype(lambda)) == (__cplusplus >= 201703L), "");
|
2014-10-08 02:01:33 +08:00
|
|
|
|
2014-12-11 04:04:48 +08:00
|
|
|
auto lambda2 = []{}; // expected-note 2{{candidate constructor}}
|
|
|
|
decltype(lambda2) bar = {}; // expected-error{{no matching constructor}}
|
2018-05-15 04:15:04 +08:00
|
|
|
static_assert(__is_literal(decltype(lambda2)) == (__cplusplus >= 201703L), "");
|
2012-02-09 16:15:36 +08:00
|
|
|
}
|
2018-05-15 04:15:04 +08:00
|
|
|
|
|
|
|
constexpr auto literal = []{};
|
|
|
|
#if __cplusplus < 201703L
|
|
|
|
// expected-error@-2 {{constexpr variable cannot have non-literal type}}
|
|
|
|
// expected-note@-3 {{lambda closure types are non-literal types before C++17}}
|
|
|
|
#endif
|