mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
@objc inference was looking at unavailable requirements---for which we don't ever record witnesses---at a point when it is no longer possible to record such a witness. This is a targeted fix; we need to tackle the issue of unavailable and optional requirements more thoroughly. Fixes SR-3917 / rdar://problem/30474860.
7 lines
142 B
Swift
7 lines
142 B
Swift
import Foundation
|
|
import ProtoRenaming
|
|
|
|
open class MyGraphView : NSObject, GraphViewSource {
|
|
open func doSomething(to view: GraphView) { }
|
|
}
|