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