summaryrefslogtreecommitdiffstats
path: root/test/SemaObjCXX/references.mm
blob: 70ce8278e8f0c6caad0177eccac2c0dda0adee45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// RUN: %clang_cc1 -verify -emit-llvm -o - %s

// Test reference binding.

typedef struct {
  int f0;
  int f1;
} T;

@interface A
@property (assign) T p0;
@property (assign) T& p1; // expected-error {{property of reference type is not supported}}
@end

int f0(const T& t) {
  return t.f0;
}

int f1(A *a) {
  return f0(a.p0);
}

int f2(A *a) {
  return f0(a.p1);	// expected-error {{property 'p1' not found on object of type 'A *'}}
}

OpenPOWER on IntegriCloud