mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-03-02 17:29:03 +00:00
New testcase
llvm-svn: 9829
This commit is contained in:
parent
953f23925f
commit
8f9c0372a4
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user