1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s | FileCheck %s 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc class nsOggCodecState { StartTime()4*f4a2713aSLionel Sambuc virtual int StartTime() { 5*f4a2713aSLionel Sambuc return -1; 6*f4a2713aSLionel Sambuc } 7*f4a2713aSLionel Sambuc }; 8*f4a2713aSLionel Sambuc class nsVorbisState : public nsOggCodecState { 9*f4a2713aSLionel Sambuc virtual ~nsVorbisState(); 10*f4a2713aSLionel Sambuc }; ~nsVorbisState()11*f4a2713aSLionel SambucnsVorbisState::~nsVorbisState() { 12*f4a2713aSLionel Sambuc } 13*f4a2713aSLionel Sambuc 14*f4a2713aSLionel Sambuc // CHECK-LABEL: define linkonce_odr i32 @_ZN15nsOggCodecState9StartTimeEv 15