URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [tc1/] [dr20.C] - Rev 308
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do run }
// Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
// DR20: Some clarifications needed for 12.8 para 15
extern "C" void printf(const char*, ...);
extern "C" void abort(void);
int count = 0;
class Thing {
public:
Thing() {
}
~Thing() {
}
Thing(const Thing&)
{
count += 1;
}
};
Thing f() {
Thing t;
return t;
}
int main(void)
{
Thing t2 = f();
printf("%d %x\n", count, &t2);
if (count != 0)
abort();
return 0;
}
Go to most recent revision | Compare with Previous | Blame | View Log