1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // expected-no-diagnostics
13 @protocol Foo <NSObject>
19 @interface Baz : NSObject {
23 - (id)initWithFoo:(id <Foo>)foo bar:(id <Bar>)bar;
30 return [self initWithFoo:0 bar:0];
33 - (id)initWithFoo:(id <Foo>)foo bar:(id <Bar>)bar