mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Un-reverts 9c01ee2c1b.
Also, add myself as a reviewer for more availability related files.
NFC.
10 lines
257 B
Swift
10 lines
257 B
Swift
// RUN: %target-typecheck-verify-swift -verify -target %target-cpu-apple-macosx11.2 -disable-objc-attr-requires-foundation-module
|
|
// REQUIRES: OS=macosx
|
|
|
|
@available(macOS 11.0, *)
|
|
class Foo {
|
|
func foo() {
|
|
if #available(macOS 11.1, *) {}
|
|
}
|
|
}
|