blob: 7711cff6d36093f27426fb74251b893adca9575f [file] [log] [blame]
// 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);
}