Files
kotlin/jps-plugin/testData/incremental/inlineFunCallSite/coroutine/inline.kt
Denis Zharkov 07592398c1 Preserve sources properly for coroutine parts
Otherwise incremental reporting leads to exception when inlining into coroutine body happens
2016-06-08 18:53:16 +03:00

6 lines
63 B
Kotlin
Vendored

package inline
inline fun f(x: Int): Int {
return x - 1
}