blob: b73ef753e081b26f9a1b1a2e98eb54ff6e39bdb9 [file] [log] [blame]
// PR c++/62219
// { dg-do compile { target c++11 } }
template< class = void >
struct S
{
friend void foo( S )
{
[](){};
}
};