Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
compiler
/
testData
/
cli
/
js
/
separateModules
/
sepModule4.kt
blob: 5781d2cfeb0c468ebe72de404e39ed88605f4eac [
file
] [
log
] [
blame
]
package
m4
import
m3
.*
inline
fun foo
(
action
:
()
->
Int
):
Int
{
return
action
()
}
fun bar
():
Int
{
foo
{
return
100
}
return
-
99
}
fun box
():
String
{
if
(
bar
()
==
100
)
return
"OK"
return
"fail"
}