blob: 8137061e16119388ca4b1419b234c8f54e36e6d6 [file] [log] [blame]
// PR c++/95193
// { dg-do compile { target c++17 } }
struct X {
void foo() const {
auto GL1 = [*this](auto a) {
};
GL1("abc");
}
};