Julian Hille
06/15/2022, 3:26 PMopen class A {
fun testA() {println("Test A")}
}
class B: A {
fun testB() { println("Test B") }
}
Now we compile this to linux and class B has fun testB and is missing function testA.
Is that on purpose? Can i do something about it?Landry Norris
06/15/2022, 4:09 PMJulian Hille
06/15/2022, 5:48 PMJulian Hille
06/15/2022, 5:59 PMJulian Hille
06/15/2022, 6:06 PMA
. Which obviously does not work when having an instance of struct B
Julian Hille
06/15/2022, 6:15 PM