* g++.dg/template/friend11.C: New test.
authorNeil Booth <neil@daikokuya.co.uk>
Wed, 1 Jan 2003 00:27:14 +0000 (00:27 +0000)
committerNeil Booth <neil@gcc.gnu.org>
Wed, 1 Jan 2003 00:27:14 +0000 (00:27 +0000)
From-SVN: r60725

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/template/friend11.C [new file with mode: 0644]

index 57fb0b04a96574a0787b540ebec77997c62cbd34..c6d9a7b2824aff4c6a32e046505d314e9fb2dc32 100644 (file)
@@ -1,3 +1,7 @@
+2003-01-01  Neil Booth  <neil@daikokuya.co.uk>
+
+       * g++.dg/template/friend11.C: New test.
+
 2003-01-01  Neil Booth  <neil@daikokuya.co.uk>
 
        * g++.dg/parse/parse1.C: New test.
diff --git a/gcc/testsuite/g++.dg/template/friend11.C b/gcc/testsuite/g++.dg/template/friend11.C
new file mode 100644 (file)
index 0000000..343b527
--- /dev/null
@@ -0,0 +1,18 @@
+/* PR c++/53 */
+/* { dg-do compile } */
+
+template <class T> 
+struct A {
+  template <class U> class B;
+
+  //  Did not compile with gcc-2.95.2 (linux i686)  :-( 
+  template <class S> template <class U> friend class A<S>::B; 
+};
+
+template <class S> template <class U> class A<S>::B {
+}; 
+
+int main(){
+  A<double>::B<double>  ab;
+  return 0; 
+}