blob: 83b0a5911d430a7655bd5eb5e384e2337fe5efe8 [file] [log] [blame]
Eli Friedman02463762010-07-27 20:51:02 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3// Check that this doesn't crash.
4struct A {
5 enum {LABEL};
6};
7int f() {
8 return A().A::LABEL;
9}
10