blob: 9bc70c84ab424feebba2843dd42120ccceb6a36e [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;
}