1 // RUN: %llvmgxx -xc++ %s -S -o - | opt -die -S | not grep cast 2 3 void foo(int*); 4 5 struct FOO { 6 int X; 7 }; 8 9 struct BAR : virtual FOO { BAR(); }; 10 11 int testfn() { 12 BAR B; 13 foo(&B.X); 14 } 15