blob: 608f4d6b5bf5f0fdbae55e5821f1152dadc135a9 [file] [log] [blame]
// 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" }