a3893a3c2e
#KT-9681 fixed
10 lines
113 B
Kotlin
Vendored
10 lines
113 B
Kotlin
Vendored
package foo
|
|
|
|
fun test() {
|
|
oldInlineFun()
|
|
}
|
|
|
|
inline
|
|
private fun oldInlineFun() {
|
|
println("oldInlineFun")
|
|
} |