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