annotate clang/test/SemaObjC/objc-container-subscripting-3.m @ 207:2e18cbf3894f

LLVM12
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 08 Jun 2021 06:07:14 +0900
parents 1d019706d866
children c4bab56944e8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
150
anatofuz
parents:
diff changeset
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
anatofuz
parents:
diff changeset
2 // rdar://10904488
anatofuz
parents:
diff changeset
3
anatofuz
parents:
diff changeset
4 @interface Test
anatofuz
parents:
diff changeset
5 - (int)objectAtIndexedSubscript:(int)index; // expected-note {{method 'objectAtIndexedSubscript:' declared here}}
anatofuz
parents:
diff changeset
6 - (void)setObject:(int)object atIndexedSubscript:(int)index; // expected-note {{parameter of type 'int' is declared here}}
anatofuz
parents:
diff changeset
7 @end
anatofuz
parents:
diff changeset
8
anatofuz
parents:
diff changeset
9 @interface NSMutableDictionary
anatofuz
parents:
diff changeset
10 - (int)objectForKeyedSubscript:(id)key; // expected-note {{method 'objectForKeyedSubscript:' declared here}}
anatofuz
parents:
diff changeset
11 - (void)setObject:(int)object forKeyedSubscript:(id)key; // expected-note {{parameter of type 'int' is declared here}}
anatofuz
parents:
diff changeset
12 @end
anatofuz
parents:
diff changeset
13
anatofuz
parents:
diff changeset
14 int main() {
anatofuz
parents:
diff changeset
15 Test *array;
anatofuz
parents:
diff changeset
16 int i = array[10]; // expected-error {{method for accessing array element must have Objective-C object return type instead of 'int'}}
anatofuz
parents:
diff changeset
17 array[2] = i; // expected-error {{cannot assign to this array because assigning method's 2nd parameter of type 'int' is not an Objective-C pointer type}}
anatofuz
parents:
diff changeset
18
anatofuz
parents:
diff changeset
19 NSMutableDictionary *dict;
anatofuz
parents:
diff changeset
20 id key, val;
anatofuz
parents:
diff changeset
21 val = dict[key]; // expected-error {{method for accessing dictionary element must have Objective-C object return type instead of 'int'}} \
anatofuz
parents:
diff changeset
22 // expected-warning {{incompatible integer to pointer conversion assigning to 'id' from 'int'}}
anatofuz
parents:
diff changeset
23 dict[key] = val; // expected-error {{method object parameter type 'int' is not object type}}
anatofuz
parents:
diff changeset
24 }
anatofuz
parents:
diff changeset
25