blob: 301907ad1c7d71c06a31a0e9d625f39269cb5c0b [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -fsyntax-only -verify %s
Anders Carlsson00165a22008-12-19 17:27:57 +00002
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{
Steve Naroff14108da2009-07-10 23:34:53 +000020 o.foo; // expected-error{{property 'foo' not found on object of type 'id'}}
Anders Carlsson00165a22008-12-19 17:27:57 +000021}
22