// { dg-do compile { target c++20 } } template struct A { template void spam(decltype([]{}) *s = nullptr) { } }; void foo() { A().spam(); }