1 // RUN: %clang_cc1 -fsyntax-only -verify %s
4 + new; // expected-note {{method 'new' is used for the forward class}}
8 @class NotKnown; // expected-note{{forward declaration of class here}}
10 void foo(NotKnown *n) {
12 [NotKnown new]; /* expected-warning {{receiver 'NotKnown' is a forward class and corresponding}} */