blob: 5bc336c69d24e9faf7469d3ddd34850a5bf3bc65 [file] [log] [blame]
Chris Lattner97628342005-07-21 21:55:08 +00001// RUN: %llvmgxx -xc++ %s -c -o - | llvm-dis | not grep cast
2
3void foo(int*);
4
5struct FOO {
6 int X;
7};
8
9struct BAR : virtual FOO { BAR(); };
10
11int testfn() {
12 BAR B;
13 foo(&B.X);
14}