blob: 55b29c15c5c31df5b558340cd5de1537e0cd978f [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Fariborz Jahanian89bc3142009-05-08 23:02:36 +00002
3@interface I
Fariborz Jahanian9f8f0262009-05-08 23:45:49 +00004+ new; // expected-note {{method 'new' is used for the forward class}}
Fariborz Jahanian89bc3142009-05-08 23:02:36 +00005@end
6Class isa;
7
8@class NotKnown;
9
10void foo(NotKnown *n) {
11 [isa new];
12 [NotKnown new]; /* expected-warning {{receiver 'NotKnown' is a forward class and corresponding}} */
13}