You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Correct a fact around @objc protocol adoption (#67)
For example, the following works even though the C class isn't marked @objc,
isn't a subclass of NSObject, and isn't a subclass of an @objc class:
import Foundation
@objc protocol P {}
class C: P {}
Fixes#66
0 commit comments