blob: bbb6c3e201aa240de2714fb6cd96096313fbaa4d (
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
|
// { dg-do run }
// GROUPS passed copy-ctors
// Using Cfront 3.0.1 the programm below prints
//
// A()
// A(const A& a)
// ~A()
// A(A& a) <---- !!!
// ~A()
// ~A()
//
// the g++ 2.2.2 (sparc-sun-sunos4.1) generated code prints
//
// A()
// A(const A& a)
// ~A()
// A(const A& a) <---- !!!
// ~A()
// ~A()
extern "C" int printf (const char *, ...);
extern "C" void exit (int);
int count = 0;
void
die (int x)
{
if (x != ++count)
{
printf ("FAIL\n");
exit (1);
}
}
class A {
public:
A() { die (1); }
A(const A& a) { die (2); }
A(A& a) { die (4); }
~A() { count++; if (count != 3 && count != 5 && count != 6) die (-1); }
};
void foo1(const A& a) {
A b = a;
}
void foo2( A& a) {
A b = a;
}
int main() {
A a;
foo1(a);
foo2(a);
printf ("PASS\n");
}
|