blob: cb2213d78dd7f2593b4d5fc91beb256f3fc3ac8f [file] [log] [blame]
Eli Friedmand29975f2012-01-31 22:47:07 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00002// expected-no-diagnostics
Eli Friedmand29975f2012-01-31 22:47:07 +00003
4namespace test1 {
5 // Make sure this doesn't crash.
6 struct A { ~A(); };
7 void a() { goto *(A(), &&L); L: return; }
8}