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