xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/pr9130.cpp (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s | FileCheck %s
2 
3 class nsOggCodecState {
StartTime()4   virtual int StartTime() {
5     return -1;
6   }
7 };
8 class nsVorbisState : public nsOggCodecState {
9   virtual ~nsVorbisState();
10 };
~nsVorbisState()11 nsVorbisState::~nsVorbisState() {
12 }
13 
14 // CHECK-LABEL: define linkonce_odr i32 @_ZN15nsOggCodecState9StartTimeEv
15