1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

New testcase

llvm-svn: 9829
This commit is contained in:
Chris Lattner 2003-11-09 07:05:02 +00:00
parent 953f23925f
commit 8f9c0372a4

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