]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/sizeof3.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / sizeof3.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/sizeof3.C b/gcc/testsuite/g++.old-deja/g++.pt/sizeof3.C
deleted file mode 100644 (file)
index cd5f701..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-// Adapted from testcase by Oskar Enoksson <osken393@student.liu.se>
-
-extern "C" void abort();
-
-template<class T0>
-class A {
-public:
-  typedef T0 T;
-};
-
-template<int K>
-class B {
-  typedef A<char[K]> BC;
-};
-
-template<int N, int M>
-class C { 
-public:
-  typedef A<char[M]> AC;
-};
-
-int main() {
-  if (sizeof(C<3,7>::AC::T) != 7) 
-    abort();
-}