java-class-parser/testsuite/classes/kotlin/Main.kt

12 lines
137 B
Kotlin

fun main() {
println("Hello, world!")
Test().apply {
test = true
}
}
class Test {
var test: Boolean = false
}