mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
12 lines
283 B
Swift
12 lines
283 B
Swift
// RUN: %target-typecheck-verify-swift -disable-availability-checking
|
|
// REQUIRES: concurrency
|
|
// REQUIRES: objc_interop
|
|
|
|
import Foundation
|
|
|
|
class X: NSObject {
|
|
// expected-error@+1 {{'async' initializer cannot be represented in Objective-C}}
|
|
@objc init(_ i : Int) async { }
|
|
}
|
|
|