blob: ad3da26185a75222eb3605d817fa035155936a6f [file] [log] [blame]
// RUN: clang -cc1 -fsyntax-only -verify -pedantic %s
@interface Derived
@end
@interface Object @end
extern Object* foo(void);
static Derived *test(void)
{
Derived *m = foo(); // expected-warning {{incompatible pointer types initializing 'Object *', expected 'Derived *'}}
return m;
}