f9fac0acf5
This may cause conflicts on shortening fq references post-processing step
19 lines
274 B
Kotlin
Vendored
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 ""
|
|
}
|
|
} |