blob: e75a1270c72a21b3b628ef744e55875967f33c12 [file] [log] [blame]
// { dg-do link { target c++2a } }
template <class T> T f(T t) { return t; }
using L = decltype([]{ return f(42); });
int main()
{
return L()();
}