Files
kotlin-fork/jps/jps-plugin/testData/incremental/multiModule/circularDependencyTopLevelFunctions/module1_a.kt
T
Evgeny Gerashchenko 7c0dde0233 Moved test data into common directory.
Original commit: 19ad2406ff
2014-11-26 14:32:12 +03:00

10 lines
233 B
Kotlin

package a
class A
fun a() {
// TODO: this call is compiled via package facade or package part depending on if callee comes from compiled or source
// Must be uncommented when modules are supported in compiler
//b.b()
}