blob: 5b3fac4a658f013f7d764959796075f369779790 [file] [log] [blame]
Eli Friedmand29975f2012-01-31 22:47:07 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3namespace test1 {
4 // Make sure this doesn't crash.
5 struct A { ~A(); };
6 void a() { goto *(A(), &&L); L: return; }
7}