be4f6beddb
- Introducing a backend diagnostic handler. - Moving JS diagnostic tests from test-common to js.test to avoid circular module dependencies. ^KT-61886 Fixed
10 lines
216 B
Kotlin
Vendored
10 lines
216 B
Kotlin
Vendored
// IGNORE_BACKEND: JS_IR
|
|
// TODO: fix in KT-61881
|
|
// !DIAGNOSTICS: -NOTHING_TO_INLINE
|
|
// FIR_IDENTICAL
|
|
|
|
inline fun f(): Unit = <!INLINE_CALL_CYCLE!>g()<!>
|
|
|
|
inline fun g(): Unit = run { <!INLINE_CALL_CYCLE!>f()<!> }
|
|
|