summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/copy1.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.brendan/copy1.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.brendan/copy1.C22
1 files changed, 22 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.brendan/copy1.C b/gcc/testsuite/g++.old-deja/g++.brendan/copy1.C
new file mode 100644
index 000000000..670cacd64
--- /dev/null
+++ b/gcc/testsuite/g++.old-deja/g++.brendan/copy1.C
@@ -0,0 +1,22 @@
+// { dg-do run }
+// GROUPS passed copy-ctors
+extern "C" int printf (const char *, ...);
+int count = 0;
+
+class C {
+public:
+ C (int) { count++; }
+ operator int () { return 0; }
+};
+
+int
+main ()
+{
+ C c1 (1);
+ C c2 (c1);
+
+ if (count != 1)
+ { printf ("FAIL\n"); return 1; }
+ else
+ printf ("PASS\n");
+}