Robert Jaros
11/07/2024, 5:57 PMRobert Jaros
11/07/2024, 5:59 PMpublic interface TestInterface {
public fun test()
}
public class Test: TestInterface {
public override fun test() {
println("Test")
}
}
public open class Test2 : TestInterface by Test()
Robert Jaros
11/07/2024, 5:59 PMpublic class Test3 : Test2() {
init {
test()
}
}
Robert Jaros
11/07/2024, 6:00 PMUnresolved reference 'test'
Robert Jaros
11/07/2024, 6:00 PMRobert Jaros
11/07/2024, 6:02 PMRobert Jaros
11/07/2024, 6:02 PMRobert Jaros
11/07/2024, 6:04 PMRobert Jaros
11/07/2024, 6:09 PM