aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/niklas03.C
blob: 7ecf0ede5f864c3294a73ecc3a6b0a628cbb6c04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// { dg-do assemble  }

template <class A> struct X {
  A operator[] (int);
};

template <class A> A X<A>::operator[] (int i)
{
  return A();	// { dg-bogus "" } 
}

X<int> x;