Files
kotlin-fork/idea/testData/checker/scripts/simple.kts
T
2015-11-19 22:56:55 +03:00

26 lines
134 B
Kotlin
Vendored

fun f() {
}
fun g() {
f()
}
val c = 1
1 + 2
val k = f()
3 + 5
g()
f()
class C {
fun f() {
}
}
val cc = C()
cc.f()