hanchenye-llvm-project/llvm/test/FrontendC++/2005-07-21-VirtualBaseAcces...

15 lines
193 B
C++

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