blob: 2cd4e397f9317bf8642c41b4f1889d0f61442439 (
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
|
// { dg-do run }
// Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
// DR185: "Named" temporaries and copy elision
extern "C" void abort(void);
struct A {
mutable int value;
explicit A(int i) : value(i) {}
void mutate(int i) const { value = i; }
};
int foo() {
A const& t = A(1);
A n(t); // can this copy be elided? NO!
t.mutate(2);
return n.value; // can this return 2? NO!
}
int main()
{
int x = foo();
if (x != 1)
abort();
return 0;
}
|