]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/eichin01b.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / eichin01b.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/eichin01b.C b/gcc/testsuite/g++.old-deja/g++.pt/eichin01b.C
deleted file mode 100644 (file)
index 51bb447..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-template <class X> class TC {
-public:
-  X aaa;
-  static X sss;
-  TC(X a) {aaa = a; }
-  TC(X a, X s) {aaa = a; sss = s; }
-  void sz(X s) { sss = s; }
-  void syy(X syarg) { sss = syarg; }
-};
-
-long TC<long>::sss;
-float TC<float>::sss;
-
-TC<long> xjj(1,2);
-
-int main(int,char*) {
-  TC<float> xff(9.9,3.14);
-  xjj.sz(123);
-  xff.sz(2.71828);
-  return 0;
-}