blob: 83b0a5911d430a7655bd5eb5e384e2337fe5efe8 [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify %s
// Check that this doesn't crash.
struct A {
enum {LABEL};
};
int f() {
return A().A::LABEL;
}