Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
compiler
/
testData
/
codegen
/
box
/
functions
/
mutualInline.kt
blob: 28f6bd6694894c279061e24a9c4053d9e72e5f8a [
file
]
// IGNORE_BACKEND_K2_MULTI_MODULE: ANY
// ^^^ Cannot split to two modules due to cyclic import
// FILE: A.kt
inline
fun a
():
String
=
b2
()
// FILE: B.kt
inline
fun b1
():
String
=
a
()
inline
fun b2
():
String
=
"OK"
fun box
()
=
b1
()