blob: 2f42d7145210345c17c51c18f7c439693017af50 [file] [log] [blame]
// PR c++/82293
// { dg-do compile { target c++11 } }
// { dg-options "-Wshadow" }
template <typename>
struct S {
int f{[this](){return 42;}()};
};
int main(){
return S<int>{}.f;
}