2988d671f7
We have several tests which tests how compiler with LV = LATEST_STABLE can consume binaries compiled with LV = LATEST_STABLE + 1 with different CLI flags. For LV = 2.0 we have special rules for those flags, so testdata was changed After switching LV in repository to 2.0 this testdata should be rolled back
16 lines
251 B
Kotlin
Vendored
16 lines
251 B
Kotlin
Vendored
@file:Suppress("UNUSED_VARIABLE")
|
|
package usage
|
|
|
|
import a.*
|
|
|
|
fun baz(param: A) {
|
|
val constructor = A()
|
|
val methodCall = param.hashCode()
|
|
val supertype = object : A() {}
|
|
|
|
val x = foo()
|
|
val y = bar
|
|
bar = 239
|
|
val z: TA = ""
|
|
}
|