brintos

brintos / llvm-project-archived public Read only

0
0
Text · 138 B · 01350c0 Raw
15 lines · cpp
1// RUN: %clang_cc1 -emit-llvm %s -o -2 3// Testcase from Bug 2914 5struct X {6  ~X();7};8 9void foo() {10  X v;11 12TryAgain:13  goto TryAgain;14}15