blob: e9e217980fb801f368a9e8a34197d72272b4f6f3 [file] [log] [blame]
John McCall9b0a7ce2011-10-02 01:16:38 +00001// RUN: %clang_cc1 -fsyntax-only -triple x86_64-apple-darwin11 -fobjc-arc -verify %s
Fariborz Jahanian6d5d6a22011-09-26 21:23:35 +00002// rdar://10186625
3
4# 1 "<command line>"
5# 1 "/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h" 1 3
John McCallc6af8c62015-10-28 05:03:19 +00006id * foo(); // expected-note {{declaration uses type that is ill-formed in ARC}}
Fariborz Jahanian6d5d6a22011-09-26 21:23:35 +00007
8# 1 "arc-unavailable-system-function.m" 2
9void ret() {
John McCallc6af8c62015-10-28 05:03:19 +000010 foo(); // expected-error {{'foo' is unavailable in ARC}}
Fariborz Jahanian6d5d6a22011-09-26 21:23:35 +000011}
12
13