mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
21 lines
379 B
Swift
21 lines
379 B
Swift
// RUN: %target-swift-frontend -emit-sil %s
|
|
|
|
// Properly make inherited initializers 'async' when needed.
|
|
@available(SwiftStdlib 5.5, *)
|
|
class Base {
|
|
required init() async { }
|
|
}
|
|
|
|
@available(SwiftStdlib 5.5, *)
|
|
class Derived: Base { }
|
|
|
|
|
|
@available(SwiftStdlib 5.5, *)
|
|
class Base2 {
|
|
required init() async throws { }
|
|
}
|
|
|
|
@available(SwiftStdlib 5.5, *)
|
|
class Derived2: Base2 { }
|
|
|