Files
swift-mirror/test/ClangImporter/Inputs/ImplementProtoRenaming.swift
Doug Gregor 769a40c2b5 [Type checker] Don't try to infer @objc from unavailable requirements.
@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.
2017-02-13 23:12:14 -08:00

7 lines
142 B
Swift

import Foundation
import ProtoRenaming
open class MyGraphView : NSObject, GraphViewSource {
open func doSomething(to view: GraphView) { }
}