aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-ice10.C
blob: 1ea59c21c843f0c1cc43c8a7bf9cde98053c784c (plain)
1
2
3
4
5
6
7
8
// PR c++/58568
// { dg-do compile { target c++11 } }

template<int> struct A
{
  static const int i;
  template<int N> const int A<N>::i = []{ return 0; }(); // { dg-error "invalid use" }
};