Projet_SETI_RISC-V/riscv-gnu-toolchain/gcc/gcc/testsuite/obj-c++.dg/comp-types-9.mm

26 lines
418 B
Plaintext

/* { dg-do compile } */
/* Another gimplifier ICE... */
#include "../objc-obj-c++-shared/TestsuiteObject.h"
@interface MyView: TestsuiteObject {
int _frame;
}
- (void)_finalize;
@end
@interface MyViewTemplate: MyView {
void *_className;
}
- (id)createRealObject;
@end
@implementation MyViewTemplate
- (id)createRealObject {
id realObj;
*(MyView *)realObj = *(MyView *)self;
return realObj;
}
@end