aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/defarg17.C
blob: 38d68d45686487395bce30d62006ac23701dabad (plain)
1
2
3
4
5
6
7
8
9
// PR c++/60185

template<int> struct A
{
  int i;			// { dg-message "" }
  A() { void foo(int=i); }	// { dg-error "" }
};

A<0> a;