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