Files
kotlin-fork/jps-plugin/testData/incremental/pureKotlin/subpackage/nested.kt
T
2014-09-24 16:31:47 +04:00

13 lines
104 B
Kotlin
Vendored

package outer.nested
import outer.f
fun g() {
}
fun main(args: Array<String>) {
f { }
g()
}