summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/warn/pr8570.C
blob: 608f4d6b5bf5f0fdbae55e5821f1152dadc135a9 (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 "instantiated" }