annotate clang/test/Sema/attr-osobject.mm @ 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 |
1d019706d866 |
children |
|
rev |
line source |
150
|
1 // RUN: %clang_cc1 -fsyntax-only -verify -fblocks %s
|
|
2
|
|
3 struct S {};
|
|
4
|
|
5 @interface I
|
|
6 @property (readonly) S* prop __attribute__((os_returns_retained));
|
|
7 - (S*) generateS __attribute__((os_returns_retained));
|
|
8 - (void) takeS:(S*) __attribute__((os_consumed)) s;
|
|
9 @end
|
|
10
|
|
11 typedef __attribute__((os_returns_retained)) id (^blockType)(); // expected-warning{{'os_returns_retained' attribute only applies to functions, Objective-C methods, Objective-C properties, and parameters}}
|
|
12
|
|
13 __auto_type b = ^ id (id filter) __attribute__((os_returns_retained)) { // expected-warning{{'os_returns_retained' attribute only applies to functions, Objective-C methods, Objective-C properties, and parameters}}
|
|
14 return filter;
|
|
15 };
|