blob: 140ed30e4fb148812c46d2b560ce89b4e936fd72 [file] [log] [blame]
// PR c++/47687
// { dg-do compile { target c++11 } }
template <class T> struct A { };
auto inl = []{ return []{}; }();
typedef decltype(inl) inlt;
A<inlt> a;