aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp1z/lambda-this7.C
blob: 8137061e16119388ca4b1419b234c8f54e36e6d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
// PR c++/95193
// { dg-do compile { target c++17 } }

struct X {
  void foo() const {
    auto GL1 = [*this](auto a) {
    };

    GL1("abc");
  }
};