This goes with r218884 from, um, last autumn.
rdar://problem/
21754114
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@242480
91177308-0d34-0410-b5e6-
96231b3b80d8
.Case("attribute_availability", true)
.Case("attribute_availability_with_message", true)
.Case("attribute_availability_app_extension", true)
+ .Case("attribute_availability_with_version_underscores", true)
.Case("attribute_cf_returns_not_retained", true)
.Case("attribute_cf_returns_retained", true)
.Case("attribute_cf_returns_on_parameters", true)
// RUN: %clang_cc1 -x objective-c++ -std=c++03 -triple x86_64-apple-darwin9.0.0 -fsyntax-only -verify %s
// rdar://18490958
+#if !__has_feature(attribute_availability_with_version_underscores)
+# error "missing feature"
+#endif
+
@protocol P
- (void)proto_method __attribute__((availability(macosx,introduced=10_1,deprecated=10_2))); // expected-note 2 {{'proto_method' has been explicitly marked deprecated here}}
@end