Avatar
private protocol Testable { var test: Int { get } } extension MyVC: Testable { fileprivate var test: Int { return 1 } }
7:46 AM
ここまでならいけるっぽい