Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
083128f6b13dfa4fc615a838c49b516d901b1ac0
/
.
/
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
;
}