blob: 9bc70c84ab424feebba2843dd42120ccceb6a36e [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2
3// Testcase from Bug 291
4
5struct X {
6 ~X();
7};
8
9void foo() {
10 X v;
11
12TryAgain:
13 goto TryAgain;
14}