]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/crash11.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / crash11.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/crash11.C b/gcc/testsuite/g++.old-deja/g++.other/crash11.C
deleted file mode 100644 (file)
index 535a6a2..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-// Origin: Alfred Minarik <a8601248@unet.univie.ac.at>
-// Build don't link:
-
-template <typename T>
-struct allocator
-{
-  typedef int size_type;
-};
-
-template <typename T>
-struct string
-{
-  typedef typename allocator<T>::size_type size_type;
-
-  static size_type size;
-
-  size_type
-  max_size() const { return size; }
-};
-
-template string <char>;