[JS IR] Fix of test with method in abstract class calling extension on super type

This commit is contained in:
Ilya Goncharov
2021-01-20 20:01:09 +03:00
parent 9c4f8f7e54
commit 0ddb603eaa
@@ -10,7 +10,7 @@ abstract class DefaultImpl: Top<Int>{
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
}