llvm-project/clang/test/SemaObjC/objc2-merge-gc-attribue-decl.m

13 lines
253 B
Mathematica
Raw Normal View History

// 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();