/* Don't forget to look in protocols if a class (and its superclasses) do not provide a suitable method. *//* { dg-do compile } */#include"../objc-obj-c++-shared/Object1.h"@protocolZot-(void)zot;@end@interfaceFoo : Object<Zot>@endintfoo(){Foo*f=nil;[fzot];/* There should be no warnings here! */return0;}