blob: 3a919d5d04cb6b93748e096461d6a0dae2351cbd [file] [log] [blame]
/* When assigning function pointers, allow for covariant return types
and contravariant argument types. */
/* { dg-do compile } */
#include <objc/Object.h>
@class Derived;
Object *ExternFunc (Object *filePath, Object *key);
typedef id FuncSignature (Object *arg1, Derived *arg2);
@interface Derived: Object
+ (void)registerFunc:(FuncSignature *)function;
@end
void foo(void)
{
[Derived registerFunc: ExternFunc];
}