blob: 63492d604d17b87f7ba7b476c2397048725ee20e [file] [log] [blame]
Anders Carlsson0ee33cf2009-09-12 16:16:49 +00001// RUN: clang-cc -emit-llvm %s -o -
2struct A {
3 void f();
4
5 int a;
6};
7
8struct B : A {
9 double b;
10};
11
12void f() {
13 B b;
14
15 b.f();
16}