blob: 8353f39d38285ce2e662864acb1a539cfd1d08a3 [file] [log] [blame]
Fariborz Jahanian89bc3142009-05-08 23:02:36 +00001// RUN: clang-cc -fsyntax-only -verify %s
2
3@interface I
4+ new;
5@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}