blob: a07acfff8847fdcc22fc7088d0c0cacab480b34a [file] [log] [blame]
// PR c++/84802
// { dg-do compile { target c++14 } }
template <class T> struct A { };
void f (A<int>& ar)
{
[](const auto& x)
{ return [x]{}(); }
(ar);
}