summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/virtual-base-destructor-call.cpp
blob: 1ee598afdc3f4a912f7e46f75a028078f964e8d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s

struct basic_ios{~basic_ios(); };

template<typename _CharT> struct basic_istream : virtual public basic_ios {
  virtual ~basic_istream(){}
};

template<typename _CharT> struct basic_iostream : public basic_istream<_CharT>
{
  virtual ~basic_iostream(){}
};

basic_iostream<char> res;

int main() {
}

// CHECK: call void @_ZN9basic_iosD2Ev
OpenPOWER on IntegriCloud