blob: 3ef2ad3c5ccd87ebdb5148f4888123d83c7395aa [file] [log] [blame]
/* APPLE LOCAL file mainline */
/* { dg-do compile } */
#include <objc/Object.h>
@interface Derived: Object
@end
extern Object* foo(void);
static Derived *test(void)
{
Derived *m = foo(); /* { dg-warning "initialization from distinct Objective\\-C type" } */
return m;
}