aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/virtual-function-calls.cpp
blob: d27a7c9bfc03faaddc6c0a2de23793b184ec6de1 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: clang-cc %s -emit-llvm -o - | FileCheck %s

// PR5021
struct A {
  virtual void f(char);
};

void f(A *a) {
  a->f('c');
}