aboutsummaryrefslogtreecommitdiff
path: root/test/CXX/basic/basic.lookup/basic.lookup.unqual/p13.cpp
blob: afd66236057211d40fef9bf2495f99c6d8e2222a (plain)
1
2
3
4
5
6
7
8
// RUN: clang-cc -fsyntax-only -verify %s

struct S {
  static const int f0 = 0;
  static int f1;
};

int S::f1 = f0;