forked from OSchip/llvm-project
27 lines
437 B
Plaintext
27 lines
437 B
Plaintext
// 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 *'}}
|
|
}
|
|
|