Files
swift-mirror/test/attr/attr_availability_swift_language_mode.swift
Allan Shortlidge 2d8465b043 AST: Introduce the SwiftLanguageMode availability domain spelling.
Require `-enable-experimental-feature SwiftRuntimeAvailability` to use this new
spelling.
2025-10-08 15:46:34 -07:00

71 lines
1.9 KiB
Swift

// RUN: %target-typecheck-verify-swift
@available(swift 3.0)
func foo() {
}
@available(swift 3.0, *) // expected-error {{Swift version availability must be specified alone}}
func foo2() {
}
@available(swift 3.0, iOS 10, *) // expected-error {{Swift version availability must be specified alone}}
func bar() {
}
@available(iOS 10, swift 3.0, *) // expected-error {{Swift version availability must be specified alone}}
func bar2() {
}
@available(iOS 10, *, swift 3.0) // expected-error {{Swift version availability must be specified alone}}
func bar3() {
}
func baz() {
if #available(swift 4) { // expected-error {{Swift version checks not allowed in #available}}
// expected-error @-1 {{condition required for target platform}}
print("yes")
} else {
print("no")
}
if #unavailable(swift 4) { // expected-error {{Swift version checks not allowed in #unavailable}}
print("no")
} else {
print("yes")
}
}
@available(swift, introduced: 3.0.1, obsoleted: 3.0.2, message: "tiny bug")
func bug() {
}
struct TestStruct {}
@available(macOS 10.11, *)
extension TestStruct {
@available(swift 400)
func doTheThing() {} // expected-note {{'doTheThing()' was introduced in Swift 400}}
}
@available(swift 400)
extension TestStruct {
func doAnotherThing() {} // expected-note {{'doAnotherThing()' was introduced in Swift 400}}
}
@available(macOS 10.11, *)
func testMemberAvailability() {
TestStruct().doTheThing() // expected-error {{'doTheThing()' is unavailable}}
TestStruct().doAnotherThing() // expected-error {{'doAnotherThing()' is unavailable}}
}
@available(swift 400)
@available(macOS 10.11, *)
extension TestStruct {}
@available(macOS 10.11, *)
@available(swift 400)
extension TestStruct {}
@available(SwiftLanguageMode 400) // expected-error {{Swift requires '-enable-experimental-feature SwiftRuntimeAvailability'}}
extension TestStruct {}