1*c9bd88e6SHans Wennborg // RUN: %clang_cc1 -emit-llvm -triple %itanium_abi_triple -o - %s | FileCheck %s 26672b335SEric Christopher 36672b335SEric Christopher // CHECK: _ZN11AccessFlags6strlenEv 46672b335SEric Christopher struct AccessFlags { 56672b335SEric Christopher void strlen(); 66672b335SEric Christopher }; 76672b335SEric Christopher strlen()86672b335SEric Christophervoid AccessFlags::strlen() { } 9