forked from OSchip/llvm-project
13 lines
253 B
Mathematica
13 lines
253 B
Mathematica
|
// RUN: clang-cc -triple i386-apple-darwin9 -fobjc-gc -fsyntax-only -verify %s
|
||
|
@interface INTF @end
|
||
|
|
||
|
extern INTF* p2;
|
||
|
extern __strong INTF* p2;
|
||
|
|
||
|
extern __strong id p1;
|
||
|
extern id p1;
|
||
|
|
||
|
extern id CFRunLoopGetMain();
|
||
|
extern __strong id CFRunLoopGetMain();
|
||
|
|