
Summary: Warn when a lambda explicitly captures something that is not used in its body. The warning is part of -Wunused and can be enabled with -Wunused-lambda-capture. Reviewers: rsmith, arphaman, jbcoe, aaron.ballman Subscribers: Quuxplusone, arphaman, cfe-commits Differential Revision: https://reviews.llvm.org/D28467 llvm-svn: 291905
17 lines
748 B
C++
17 lines
748 B
C++
// RUN: %clang_cc1 -std=c++11 %s -Wunused -Wno-unused-lambda-capture -verify
|
|
|
|
void f2() {
|
|
int i = 1;
|
|
void g1(int = ([i]{ return i; })()); // expected-error{{lambda expression in default argument cannot capture any entity}}
|
|
void g2(int = ([i]{ return 0; })()); // expected-error{{lambda expression in default argument cannot capture any entity}}
|
|
void g3(int = ([=]{ return i; })()); // expected-error{{lambda expression in default argument cannot capture any entity}}
|
|
void g4(int = ([=]{ return 0; })());
|
|
void g5(int = ([]{ return sizeof i; })());
|
|
}
|
|
|
|
namespace lambda_in_default_args {
|
|
int f(int = [] () -> int { int n; return ++n; } ());
|
|
template<typename T> T g(T = [] () -> T { T n; return ++n; } ());
|
|
int k = f() + g<int>();
|
|
}
|