aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/static-data-member.cpp
blob: 6e2abcc1adea8aac789ca55b36cb547a85caba71 (plain)
1
2
3
4
5
6
7
8
// RUN: clang-cc -emit-llvm -o - %s
struct S { 
  static int i;
};

void f() { 
  int a = S::i;
}