blob: 63492d604d17b87f7ba7b476c2397048725ee20e [file] [log] [blame]
// RUN: clang-cc -emit-llvm %s -o -
struct A {
void f();
int a;
};
struct B : A {
double b;
};
void f() {
B b;
b.f();
}