blob: 72a8c97d0bb71b8cb8d752fcbc1e0ec09e1e7f5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// RUN: %clang_cc1 -fsyntax-only -triple x86_64-apple-darwin11 -fobjc-arc -verify %s
// rdar://10186625
# 1 "<command line>"
# 1 "/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h" 1 3
id * foo(); // expected-note {{unsupported declaration here}}
# 1 "arc-unavailable-system-function.m" 2
void ret() {
foo(); // expected-error {{'foo' is unavailable: this system declaration uses an unsupported type}}
}
|