]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/nested4.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / nested4.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/nested4.C b/gcc/testsuite/g++.old-deja/g++.other/nested4.C
deleted file mode 100644 (file)
index b6198a1..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-// Build don't link:
-// 
-// Copyright (C) 2000 Free Software Foundation, Inc.
-// Contributed by Nathan Sidwell 10 Aug 2000 <nathan@codesourcery.com>
-
-// bug 372 We ICE'd on the out-of-class definition of a nested class of a
-// class template.
-
-struct Bar
-{
-};
-
-template <class T>
-struct Foo
-{
-  struct Baz;
-  struct Biz;
-  struct Boz
-  : Bar
-  {
-  };
-};
-
-template <class T>
-struct Foo<T>::Biz
-{
-};
-
-template <class T>
-struct Foo<T>::Baz
-: Bar
-{
-};