aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp23/static-operator-call5.C
blob: f7ce8c0300812492af3ec4783f640843fc551c11 (plain)
1
2
3
4
5
6
7
8
9
// PR c++/108526
// { dg-do compile { target c++23 } }
// { dg-additional-options -g } PR108706

template<class> void f()
{
  auto a = [] (auto x) static { return x; };
}
template void f<int>();