]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/template/member.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / template / member.C
diff --git a/gcc/testsuite/g++.dg/template/member.C b/gcc/testsuite/g++.dg/template/member.C
deleted file mode 100644 (file)
index f6f264e..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-// { dg-do compile }\r
-\r
-\r
-class BIXSet{\r
-int z[4];\r
-public:\r
-void f(BIXSet &other){\r
-z[0]=other.z[0];\r
-}\r
-\r
-};\r
-\r
-class TestCase2{\r
-public:\r
-BIXSet a,b;\r
-\r
-public:\r
-void run(void){\r
-BIXSet x,y;\r
-process(0,x,y);\r
-}\r
-\r
-protected:\r
-template<class BS> void process(const int d,BS &en,BS &lb){\r
-a.f(en);b.f(lb);\r
-}\r
-\r
-};\r