aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/pr8570.C
blob: 4c34c6c336c7ea770d83060657f624fd6a553e59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// PR c++/8570
// { dg-do compile }
// { dg-options "" }
template <typename T, typename P>
class X { // { dg-message "note: previous declaration .* used 2" }
public:
  X() { }

private:
  template <typename U> friend class X; // { dg-error "redeclared with 1 template parameter" }
};

X<int, int> i;		// { dg-message "required" }