aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/eichin01b.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.pt/eichin01b.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.pt/eichin01b.C21
1 files changed, 0 insertions, 21 deletions
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
index 51bb4474c8f..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.pt/eichin01b.C
+++ /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;
-}