blob: 46e53c785532e448d6286f57f48f615ab51daf37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
// { dg-do run }
// GROUPS passed copy-ctors
#include <stdio.h>
int pass = 0;
class name {
int namestuff;
public:
name() {
namestuff = 111;
}
name(const name& subject);
name & operator = (const name& right) {
this->namestuff = right.namestuff;
return *this;
}
~name() {
;
}
};
name::name(const name& subject) {
pass = 1;
}
class person {
int personstuff;
name personname;
public:
person() {
;
personstuff = 222;
}
~person() {
;
}
void print() {
;
}
};
void
test(person argp)
{
person testp;
;
argp.print();
testp = argp;
argp.print();
testp.print();
;
}
int main()
{
person mainp;
test(mainp);
if (pass)
printf ("PASS\n");
else
{ printf ("FAIL\n"); return 1; }
}
|