This commit adds a traversal of the AST after Sema of a function that diagnoses unguarded references to declarations that are partially available (based on availability attributes). This traversal is only done when we would otherwise emit -Wpartial-availability. This commit is part of a feature I proposed here: http://lists.llvm.org/pipermail/cfe-dev/2016-July/049851.html Differential revision: https://reviews.llvm.org/D23003 llvm-svn: 278826
23 lines
949 B
Objective-C
23 lines
949 B
Objective-C
// RUN: %clang_cc1 -fsyntax-only -Wunguarded-availability -triple x86_64-apple-macosx10.10.0 -verify %s
|
|
|
|
void f() {
|
|
|
|
if (@available(macos 10.12, *)) {}
|
|
else if (@available(macos 10.11, *)) {}
|
|
else {}
|
|
|
|
(void)__builtin_available(ios 8, macos 10.10, *);
|
|
|
|
(void)@available(macos 10.11); // expected-error{{must handle potential future platforms with '*'}}
|
|
(void)@available(macos 10.11, macos 10.11, *); // expected-error{{version for 'macos' already specified}}
|
|
|
|
(void)@available(erik_os 10.11, *); // expected-error{{unrecognized platform name erik_os}}
|
|
|
|
(void)@available(erik_os 10.10, hat_os 1.0, *); // expected-error 2 {{unrecognized platform name}}
|
|
|
|
(void)@available(); // expected-error{{expected a platform name here}}
|
|
(void)@available(macos 10.10,); // expected-error{{expected a platform name here}}
|
|
(void)@available(macos); // expected-error{{expected a version}}
|
|
(void)@available; // expected-error{{expected '('}}
|
|
}
|