xref: /minix3/external/bsd/llvm/dist/clang/test/SemaObjC/gc-attributes.m (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-gc -fsyntax-only -verify %s
2*f4a2713aSLionel Sambuc
3*f4a2713aSLionel Sambuc@interface A
4*f4a2713aSLionel Sambuc@end
5*f4a2713aSLionel Sambuc
6*f4a2713aSLionel Sambucvoid f0(__strong A**); // expected-note{{passing argument to parameter here}}
7*f4a2713aSLionel Sambuc
8*f4a2713aSLionel Sambucvoid test_f0() {
9*f4a2713aSLionel Sambuc  A *a;
10*f4a2713aSLionel Sambuc  static __weak A *a2;
11*f4a2713aSLionel Sambuc  f0(&a);
12*f4a2713aSLionel Sambuc  f0(&a2); // expected-warning{{passing 'A *__weak *' to parameter of type 'A *__strong *' discards qualifiers}}
13*f4a2713aSLionel Sambuc}
14*f4a2713aSLionel Sambuc
15*f4a2713aSLionel Sambucvoid f1(__weak A**); // expected-note{{passing argument to parameter here}}
16*f4a2713aSLionel Sambuc
17*f4a2713aSLionel Sambucvoid test_f1() {
18*f4a2713aSLionel Sambuc  A *a;
19*f4a2713aSLionel Sambuc  __strong A *a2;
20*f4a2713aSLionel Sambuc  f1(&a);
21*f4a2713aSLionel Sambuc  f1(&a2); // expected-warning{{passing 'A *__strong *' to parameter of type 'A *__weak *' discards qualifiers}}
22*f4a2713aSLionel Sambuc}
23