brintos

brintos / llvm-project-archived public Read only

0
0
Text · 394 B · 1599688 Raw
13 lines · plain
1// RUN: %clang_cc1 -fsyntax-only -triple x86_64-apple-darwin11 -fobjc-arc -verify %s2 3# 1 "<command line>"4# 1 "/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h" 1 35id * foo(void); // expected-note {{declaration uses type that is ill-formed in ARC}}6 7# 1 "arc-unavailable-system-function.m" 28void ret(void) {9  foo(); // expected-error {{'foo' is unavailable in ARC}}10}11 12 13