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