Home | History | Annotate | Download | only in basic.lookup.unqual
      1 // RUN: %clang_cc1 -fsyntax-only -verify %s
      2 
      3 struct S {
      4   static const int f0 = 0;
      5   static int f1;
      6 };
      7 
      8 int S::f1 = f0;
      9