aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.law/ctors12.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.law/ctors12.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.law/ctors12.C33
1 files changed, 33 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.law/ctors12.C b/gcc/testsuite/g++.old-deja/g++.law/ctors12.C
new file mode 100644
index 00000000000..37d45884398
--- /dev/null
+++ b/gcc/testsuite/g++.old-deja/g++.law/ctors12.C
@@ -0,0 +1,33 @@
+// GROUPS passed constructors
+#include <stdio.h>
+#include <stdlib.h>
+#include <iostream.h>
+
+#define MAGIC 7654
+
+class complex {
+ double re;
+ double im;
+ int magic;
+ static int count;
+public:
+ complex() { re=im=0; magic=MAGIC; }
+ complex(double d) { re=d; im=0; magic=MAGIC; }
+ complex(double d, double d2) {re=d; im=d2; magic=MAGIC; }
+ ~complex() {if(magic!=MAGIC) {printf("FAIL\n");exit(0);}}
+ friend ostream& operator << (ostream& o, const complex& c)
+ { return o << "(" << c.re << "," << c.im << ")"; }
+};
+
+int complex::count=0;
+
+main()
+{
+ complex v[6] = {1, complex(1,2), complex(), 2 }; // ARM Sect. 12.6.1
+ int i; // page 289
+
+ for(i=0; i<6; i++) ;
+ printf ("PASS\n");
+
+ return 0;
+}