FirSupertypesChecker: implement six more diagnostics

This commit is contained in:
Mikhail Glukhikh
2021-05-06 13:57:08 +03:00
parent db828a6aad
commit 0f9f63400e
73 changed files with 337 additions and 230 deletions
@@ -19,7 +19,7 @@ FILE: common.kt
}
Module: m1-jvm
FILE: jvm.kt
public final actual class MyList : R|kotlin/Any| {
public open actual class MyList : R|kotlin/Any| {
public constructor(): R|MyList| {
super<R|kotlin/Any|>()
}
@@ -11,7 +11,7 @@ open class Wrapper(val list: MyList)
// MODULE: m1-jvm(m1-common)
// FILE: jvm.kt
actual class MyList {
actual open class MyList {
actual fun get(i: Int): Int = i
fun set(i: Int, v: Int) {}