blob: be14b7f639b26bc492ee8ac9c8c55a1428c9464c [file] [log] [blame]
// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
// Testcase from Bug 291
struct X {
~X();
};
void foo() {
X v;
TryAgain:
goto TryAgain;
}