// PR c++/55223 // { dg-options "-std=c++11 -fabi-version=0" } // { dg-final { scan-assembler "_ZN8functionC1IZN1CIiE4testES_Ed_UliE_EET_" } } struct function { template function(U u) { } }; template struct C { static T test(function f = [](int i){return i;}) { } }; int main() { C::test(); }