Home | History | Annotate | Download | only in SemaCXX
      1 // RUN: %clang_cc1 -fsyntax-only -verify %s
      2 
      3 // Check that this doesn't crash.
      4 struct A {
      5   enum {LABEL};
      6 };
      7 int f() {
      8   return A().A::LABEL;
      9 }
     10 
     11