Sign in
fuchsia
/
third_party
/
swift-clang
/
a40ea3abe6e2f0b338d00c38fe7d724241c5af97
/
.
/
test
/
CodeGenCXX
/
PR5093-static-member-function.cpp
blob: 681135182bf29188b5949b21d75e7c754d00c1c9 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 %s -emit-llvm -triple %itanium_abi_triple -o - | FileCheck %s
struct
a
{
static
void
f
();
};
void
g
(
a
*
a
)
{
// CHECK: call {{.*}}void @_ZN1a1fEv()
a
->
f
();
}