aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-template14.C
blob: b73ef753e081b26f9a1b1a2e98eb54ff6e39bdb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
// PR c++/62219
// { dg-do compile { target c++11 } }

template< class = void >
struct S
{
  friend void foo( S )
  {
    [](){};
  }
};