blob: 3d1c113d832a0d45fe12c365e286c86bad4fbe46 [file] [log] [blame]
// PR c++/62155
// { dg-do compile { target c++11 } }
template <typename T> struct S {
T i{[this] {}}; // { dg-error "cannot convert" }
};
S<int> s; // { dg-message "required" }