blob: 967e74ab12dc6058f3772c80726f35060805a009 [file] [log] [blame]
// Build don't link:
// Special g++ Options: -fexceptions
struct C {
bool mem;
~C();
};
C genTemp();
int foo_notok(int arg) {
switch (arg) {
case 0:
return genTemp().mem;
default:
return 3;
}
}