]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/crash67.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / crash67.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/crash67.C b/gcc/testsuite/g++.old-deja/g++.pt/crash67.C
deleted file mode 100644 (file)
index e8fc214..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-// Build don't link:
-// Special g++ Options: 
-// 
-// Copyright (C) 2001 Free Software Foundation, Inc.
-// Contributed by Nathan Sidwell 6 May 2001 <nathan@codesourcery.com>
-
-// Bug 2526. We ICE'd after diagnosing dependant name confusion in
-// friendliness when not being pedantic.
-
-template<typename T>
-struct B
-{
-  typedef B<T> Mother;
-};
-
-template<typename T>
-struct D : B<T>
-{
-  friend class Mother; // WARNING - defines namespace class
-};