blob: 37feff0a72302f976a5b92977432cf6d4b0e2928 [file] [log] [blame]
/* { dg-do compile } */
#include "../objc-obj-c++-shared/Object1.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;
}