73799e2c3c
It's done with similar constructions where possible trying to preserve intended behavior. Some usages are removed because they test exactly the feature that we are going to drop soon.
6 lines
85 B
Kotlin
Vendored
6 lines
85 B
Kotlin
Vendored
fun <T> test(a: Int) = { a: Int -> a }
|
|
class Test<T>
|
|
|
|
fun foo() {
|
|
test<Int>(12)
|
|
} |