9 lines
98 B
C++
9 lines
98 B
C++
|
// RUN: clang-cc -emit-llvm -o - %s
|
||
|
struct S {
|
||
|
static int i;
|
||
|
};
|
||
|
|
||
|
void f() {
|
||
|
int a = S::i;
|
||
|
}
|