mirror of
https://github.com/apple/swift.git
synced 2026-06-20 15:42:51 +02:00
5f4da4cce6
Fixes rdar://73476584.
8 lines
109 B
Swift
8 lines
109 B
Swift
import Foundation
|
|
|
|
open class Base: NSObject { }
|
|
|
|
extension Base {
|
|
@objc open func foo(id: Int) async { }
|
|
}
|