Files
kotlin-fork/nj2k/testData/newJ2k/comments/commentInsideCall.kt
T
Ilya Kirillov f9fac0acf5 New J2K: do not save import statements in files as we print fqNames for calls
This may cause conflicts on shortening fq references post-processing step
2019-09-24 17:13:11 +03:00

19 lines
274 B
Kotlin
Vendored

package test
object Test {
@JvmStatic
fun main(args: Array<String>) {
println()
// Comment
foo()
// Comment1
// Comment2
.indexOf("s")
}
fun foo(): String {
return ""
}
}