Home | History | Annotate | Download | only in SemaCXX
      1 // RUN: %clang_cc1 -fsyntax-only -verify %s
      2 
      3 namespace test1 {
      4   // Make sure this doesn't crash.
      5   struct A { ~A(); };
      6   void a() { goto *(A(), &&L); L: return; }
      7 }
      8