// PR c++/82053 // { dg-do compile { target c++14 } } template int fn() { return 42; } template auto lam = [](int = fn()){}; int main() { lam(); }