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

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