(root)/
gcc-13.2.0/
gcc/
testsuite/
objc.dg/
comp-types-8.m
/* { 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