blob: 46e7b2d37f777eaf3431824b7a08e68a44a414b3 [file] [log] [blame]
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
// PR5021
namespace PR5021 {
struct A {
virtual void f(char);
};
void f(A *a) {
// CHECK: call void %
a->f('c');
}
struct B : virtual A {
virtual void f();
};
void f(B * b) {
b->f();
}
}
namespace Test1 {
struct A {
virtual ~A();
};
struct B : A {
virtual ~B();
virtual void f();
};
void f(B *b) {
b->f();
}
}