1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 14:32:51 +01:00
llvm-mirror/test/Regression/C++Frontend/2005-07-21-VirtualBaseAccess.cpp
Chris Lattner df5e211e12 new testcase for PR602
llvm-svn: 22495
2005-07-21 21:55:08 +00:00

15 lines
182 B
C++

// 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);
}