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