Files
kotlin-fork/j2k/testData/fileOrElement/issues/kt-851.kt
T
Simon Ogorodnik 0560ba7929 KT-19943: Remove redundant type conversions in J2kPostProcessing
Don't remove them in converter itself
2017-11-13 15:54:33 +03:00

8 lines
110 B
Kotlin
Vendored

internal class Test {
fun putInt(i: Int) {}
fun test() {
val b = 10
putInt(b)
}
}