blob: 836d5b2350712918ef4fac277fed84d892c74cc4 [file] [log] [blame]
Steve Naroff61d68522009-03-05 15:22:01 +00001// RUN: clang -fsyntax-only -verify %s
2
3@protocol B;
4@protocol C < B > // expected-warning{{cannot find protocol definition for 'B'}} // expected-note{{previous definition is here}}
5@end
6@protocol A < C >
7@end
8@protocol B < A > // expected-error{{protocol has circular dependency}}
9@end
10