[JS IR] Fix of test with method in abstract class calling extension on super type
This commit is contained in:
+1
-1
@@ -10,7 +10,7 @@ abstract class DefaultImpl: Top<Int>{
|
|||||||
override fun toString(data: Int): String = data.toString()
|
override fun toString(data: Int): String = data.toString()
|
||||||
}
|
}
|
||||||
|
|
||||||
class Bottom(val data: Int): DefaultImpl {
|
class Bottom(val data: Int): DefaultImpl() {
|
||||||
override fun getData(): Int = data
|
override fun getData(): Int = data
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user