Home | History | Annotate | Download | only in basic.lookup.unqual
      1 // RUN: %clang_cc1 -fsyntax-only -verify %s
      2 
      3 struct S {};
      4 S E0;
      5 
      6 namespace {
      7   enum {
      8     E0 = 1,
      9     E1 = E0 + 1
     10   };
     11 }
     12 
     13 
     14