]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/template/ttp2.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / template / ttp2.C
diff --git a/gcc/testsuite/g++.dg/template/ttp2.C b/gcc/testsuite/g++.dg/template/ttp2.C
deleted file mode 100644 (file)
index 45d9abd..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright (C) 2001 Free Software Foundation
-// Contributed by Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
-// { dg-do compile }
-
-template <class U> struct Alloc {};
-
-template <class T, class U = Alloc<T> > struct Vector {};
-
-template <template <class T, class U = Alloc<T> > class TT>
-struct C {
-       TT<int> tt;
-};
-
-int main()
-{
-       C<Vector> c;
-}