1 // RUN: %clang_cc1 %s -emit-llvm -triple %itanium_abi_triple -o - | FileCheck %s
2 struct a {
3   static void f();
4 };
5 
g(a * a)6 void g(a *a) {
7   // CHECK: call {{.*}}void @_ZN1a1fEv()
8   a->f();
9 }
10