llvm-project/clang/test/CodeGenCXX/static-data-member.cpp

9 lines
98 B
C++

// RUN: clang-cc -emit-llvm -o - %s
struct S {
static int i;
};
void f() {
int a = S::i;
}