// RUN: %clang_cc1 -fsyntax-only -verify %s
@interfaceI+ new;// expected-note {{method 'new' is used for the forward class}}
@endClass isa;@class NotKnown;// expected-note{{forward declaration of class here}}
voidfoo(NotKnown *n){[isa new];[NotKnown new];/* expected-warning {{receiver 'NotKnown' is a forward class and corresponding}} */}