Sign in
llvm
/
clang
/
a5728872c7702ddd09537c95bc3cbd20e1f2fb09
/
.
/
test
/
CodeGenCXX
/
static-data-member.cpp
blob: 53a1d5e4c4504d3678164b4bc8d7b23b110ee453 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm -o - %s
struct
S
{
static
int
i
;
};
void
f
()
{
int
a
=
S
::
i
;
}