Files
swift-mirror/test/Concurrency/actor_isolation_objc.swift
Doug Gregor 2b9ca315fe [Concurrency] Remove asyncHandler attribute.
The `asyncHandler` attribute turned out to be the wrong solution
to the problem of creating a sync->async bridge. Remove it.
2021-05-13 17:01:39 -07:00

49 lines
2.0 KiB
Swift

// RUN: %target-typecheck-verify-swift -enable-experimental-concurrency
// REQUIRES: concurrency
// REQUIRES: objc_interop
import Foundation
func g(_ selector: Selector) -> Int { }
actor A {
func selectors() {
_ = #selector(type(of: self).f) // expected-error{{argument of '#selector' refers to instance method 'f()' that is not exposed to Objective-C}}
_ = #selector(type(of: self).g) // expected-error{{argument of '#selector' refers to instance method 'g()' that is not exposed to Objective-C}}
_ = #selector(type(of: self).h)
}
func keypaths() {
_ = #keyPath(A.w) // expected-error {{'#keyPath' refers to non-'@objc' property 'w'}}
// expected-error@+1 {{cannot form key path to actor-isolated property 'x'}}
_ = #keyPath(A.x) // expected-error{{argument of '#keyPath' refers to non-'@objc' property 'x'}}
// expected-error@+1 {{cannot form key path to actor-isolated property 'y'}}
_ = #keyPath(A.y) // expected-error{{argument of '#keyPath' refers to non-'@objc' property 'y'}}
// expected-error@+1 {{cannot form key path to actor-isolated property 'computed'}}
_ = #keyPath(A.computed) // expected-error{{argument of '#keyPath' refers to non-'@objc' property 'computed'}}
_ = #keyPath(A.z)
}
let w: Int = 0 // expected-note{{add '@objc' to expose this property to Objective-C}}
var x: Int = 0 // expected-note{{add '@objc' to expose this property to Objective-C}}
@objc var y: Int = 0 // expected-note{{add '@objc' to expose this property to Objective-C}}
// expected-error@-1{{actor-isolated property 'y' cannot be @objc}}
@objc @actorIndependent(unsafe) var z: Int = 0
// expected-note@+1 {{add '@objc' to expose this property to Objective-C}}
@objc var computed : Int { // expected-error{{actor-isolated property 'computed' cannot be @objc}}
get { 120 }
}
func f() { } // expected-note{{add '@objc' to expose this instance method to Objective-C}}
func g() { } // expected-note{{add '@objc' to expose this instance method to Objective-C}}
@objc func h() async { }
}