(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp2a/
lambda-uneval9.h
       1  // a.h:
       2  template <typename T>
       3  int counter() {
       4    static int cnt = 0;
       5    return ++cnt;
       6  }
       7  inline int f() {
       8    return counter<decltype([] {})>();
       9  }