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