blob: f0615a32bea92c01944335a43c87c6242a162c21 [file] [log] [blame]
Chris Lattnerb99d7492008-07-26 00:20:22 +00001// RUN: clang -fsyntax-only -verify %s
2
3@protocol SomeProtocol
4@end
5
6void foo(id x) {
7 bar((short<SomeProtocol>)x); // expected-error {{expected ')'}} expected-error {{to match this '('}}
8 bar((<SomeProtocol>)x); // expected-warning {{protocol qualifiers without 'id' is archaic}}
9}
10