aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/other/default7.C
blob: ec523bf8901f052f6d2a64172e30e3f0cd241c81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* { dg-do assemble } */
/* { dg-options "-O1" }*/
// This was PR C++/31165
// We used to copy the whole decl when we just wantted to
// unshare some expressions for the default argument.
class string {
  char *ptr;
  int len;
  int sz;
};
class cset { }  _cset_init;
string an_empty_string;
void f(string& = an_empty_string);
void
h (void )
{
f();
}