Mercurial > hg > CbC > CbC_llvm
view clang/test/SemaObjC/property-not-lvalue.m @ 266:00f31e85ec16 default tip
Added tag current for changeset 31d058e83c98
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 14 Oct 2023 10:13:55 +0900 |
parents | 1f2b6ac9f198 |
children |
line wrap: on
line source
// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s typedef struct NSSize { int width; struct { int dim; } inner; } NSSize; typedef __attribute__((__ext_vector_type__(2))) float simd_float2; @interface Foo { NSSize _size; } @property NSSize size; @property simd_float2 f2; @end void foo(void) { Foo *f; f.size.width = 2.2; // expected-error {{expression is not assignable}} f.size.inner.dim = 200; // expected-error {{expression is not assignable}} } // radar 7628953 @interface Gorf { } - (NSSize)size; @end @implementation Gorf - (void)MyView_sharedInit { self.size.width = 2.2; // expected-error {{expression is not assignable}} } - (NSSize)size {} @end // clang used to crash compiling this code. void test(Foo *f) { simd_float2 *v = &f.f2.xy; // expected-error {{cannot take the address of an rvalue}} }