blob: 673a7417e384c363efe1f06c9487b4f37b983543 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -triple i386-apple-darwin9 -fobjc-gc -fsyntax-only -verify %s
Fariborz Jahanianc8d2e772009-04-15 21:54:48 +00002@interface INTF @end
3
4extern INTF* p2;
5extern __strong INTF* p2;
6
7extern __strong id p1;
8extern id p1;
9
10extern id CFRunLoopGetMain();
11extern __strong id CFRunLoopGetMain();
12
Fariborz Jahanian6de8b622010-02-10 00:32:12 +000013extern __weak id WLoopGetMain(); // expected-note {{previous declaration is here}}
14extern id WLoopGetMain(); // expected-error {{conflicting types for 'WLoopGetMain'}}
Fariborz Jahanian8df7a282009-06-02 18:32:00 +000015
16extern id p3; // expected-note {{previous definition is here}}
17extern __weak id p3; // expected-error {{redefinition of 'p3' with a different type}}
18
Fariborz Jahanian86f43852009-06-02 20:58:58 +000019extern void *p4; // expected-note {{previous definition is here}}
20extern void * __strong p4; // expected-error {{redefinition of 'p4' with a different type}}
21
22extern id p5;
23extern __strong id p5;
24
25extern char* __strong p6; // expected-note {{previous definition is here}}
26extern char* p6; // expected-error {{redefinition of 'p6' with a different type}}
27
Steve Naroff14108da2009-07-10 23:34:53 +000028extern __strong char* p7; // expected-note {{previous definition is here}}
29extern char* p7; // expected-error {{redefinition of 'p7' with a different type}}