http://gcc.gnu.org/ml/gcc-patches/2008-02/msg00110.html
[official-gcc.git] / gcc / testsuite / g++.dg / warn / pr8570.C
blob0136bb1050a0ca52b41062e44935a8fd1b0a8723
1 // PR c++/8570
2 // { dg-do compile }
3 // { dg-options "" }
4 template <typename T, typename P>
5 class X { // { dg-warning "note: previous declaration .* used 2" }
6 public:
7   X() { }
9 private:
10   template <typename U> friend class X; // { dg-error "error: .*redeclared with 1 template parameter" }
13 X<int, int> i;