llvm-6502/test/C++Frontend/2005-07-21-VirtualBaseAccess.cpp

15 lines
182 B
C++
Raw Normal View History

// RUN: %llvmgxx -xc++ %s -c -o - | llvm-dis | not grep cast
void foo(int*);
struct FOO {
int X;
};
struct BAR : virtual FOO { BAR(); };
int testfn() {
BAR B;
foo(&B.X);
}