Files
kotlin-fork/compiler/testData/codegen/box/inference/capturedStarProjection.kt
T
Alexander Udalov 1071919706 Remove backend tests on old inference
Also remove any mentions of NewInference, and rename some tests.
2021-11-09 20:07:33 +01:00

14 lines
119 B
Kotlin
Vendored

// WITH_RUNTIME
interface A<T> {
var x: T
}
fun test(a: A<*>) {
a.x
}
fun box(): String {
return "OK"
}