blob: 23af00646a97d81d55e8c809ef0a141bd27e7e01 [file] [log] [blame]
Anders Carlsson00165a22008-12-19 17:27:57 +00001// RUN: clang -fsyntax-only -verify %s
2
3// PR3234
4
5@protocol NSCopying @end
6@interface NSObject @end
7
8void f1(NSObject *o)
9{
10 o.foo; // expected-error{{property 'foo' not found on object of type 'NSObject *'}}
11}
12
13void f2(id<NSCopying> o)
14{
15 o.foo; // expected-error{{property 'foo' not found on object of type 'id<NSCopying>'}}
16}
17
18void f3(id o)
19{
20 o.foo; // expected-error{{member reference base type 'id' is not a structure or union}}
21}
22