Files
kotlin/compiler/testData/cli/js/separateModules/sepModule3.kt
2018-04-10 15:58:30 +03:00

11 lines
114 B
Kotlin
Vendored

package m3
fun foofaa(): Unit { }
inline fun foo(action: () -> Int): Int {
foofaa()
return action()
}