blob: 40da96e0961d3ee3a0e19456232aab82a62a4f49 [file] [log] [blame]
// RUN: clang-cc -fsyntax-only -verify %s
@protocol B;
@protocol C < B > // expected-warning{{cannot find protocol definition for 'B'}} // expected-note{{previous definition is here}}
@end
@protocol A < C >
@end
@protocol B < A > // expected-error{{protocol has circular dependency}}
@end