New testcase

llvm-svn: 9829
This commit is contained in:
Chris Lattner 2003-11-09 07:05:02 +00:00
parent 984e11792f
commit b09ad87eb9
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
// The code generated for this testcase should be completely typesafe!
// RUN: %llvmgcc -xc++ -S -o - %s | not grep ' cast '
struct contained {
unsigned X;
contained();
};
struct base {
unsigned A, B;
};
struct derived : public base {
contained _M_value_field;
};
int test() {
derived X;
}