freebsd-nq/test/CodeGenCXX/static-data-member.cpp
2009-10-14 18:03:49 +00:00

9 lines
98 B
C++

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