[ObjCType] Add basic implementation of base method, fix tests
KT-65687
This commit is contained in:
committed by
Space Team
parent
1c2570ed7e
commit
078f0ff6e1
+7
@@ -0,0 +1,7 @@
|
||||
private interface PrivateInterface<T> {
|
||||
fun foo(): T
|
||||
}
|
||||
|
||||
class PublicClass : PrivateInterface<Int> {
|
||||
override fun foo(): Int = error("stub")
|
||||
}
|
||||
Reference in New Issue
Block a user