blob: e3a19a34a1695a87d094c1c56cf96f35c6549ad4 [file] [log] [blame]
// RUN: clang-cc -emit-llvm-only %s
// PR5021
struct A {
virtual void f(char);
};
void f(A *a) {
a->f('c');
}