I just wanna avoid warning (without compiler suppression), but don't wanna add some includes to my file. Here is my code:
@protocol MyProto;
// ...
Protocol *p = @protocol(MyProto);
Here is warning I got:
@protocol is using a forward protocol declaration of MyProto [-Wat-protocol]