[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git] / test / SemaObjC / error-missing-getter.m
blob3c91ab2ffcd02de221430a15f4598429d4b589e2
1 // RUN: %clang_cc1  -fsyntax-only -verify %s
2 // rdar://8155806
4 @interface Subclass 
6     int setterOnly;
8 - (void) setSetterOnly : (int) arg;
9 @end
11 int func (int arg, Subclass *x) {
12     if (x.setterOnly) { // expected-error {{expected getter method not found on object of type 'Subclass *'}}
13       x.setterOnly = 1;
14     }
15     func(x.setterOnly + 1, x); // expected-error {{expected getter method not found on object of type 'Subclass *'}} 
16     int i = x.setterOnly + 1;  // expected-error {{expected getter method not found on object of type 'Subclass *'}} 
17     return x.setterOnly + 1;   // expected-error {{expected getter method not found on object of type 'Subclass *'}}