Files
kotlin/compiler/testData/diagnostics/testsWithJsStdLibAndBackendCompilation/inline/recursionCycleWithStdlibCall.kt
Alexey Andreev 0e96af2f1b Fix tests for inline cycle diagnostics in JS
(cherry picked from commit c65a79b)
2017-09-11 15:14:47 +03:00

7 lines
149 B
Kotlin
Vendored

// !DIAGNOSTICS: -NOTHING_TO_INLINE
inline fun f(): Unit = <!INLINE_CALL_CYCLE!>g()<!>
inline fun g(): Unit = run { <!INLINE_CALL_CYCLE!>f()<!> }