blob: 01350c00b9bd19c779d6a0709347c9603c44953c [file] [log] [blame]
Eric Christopher2368b6a2011-08-20 00:09:39 +00001// RUN: %clang_cc1 -emit-llvm %s -o -
2
3// Testcase from Bug 291
4
5struct X {
6 ~X();
7};
8
9void foo() {
10 X v;
11
12TryAgain:
13 goto TryAgain;
14}