Avatar
import Foundation @objc protocol D { func hello() } class C: D { func hello() { print("hello") } } C.self is D (C.self as? D)?.hello()