Files
kotlin-fork/compiler/testData/diagnostics/testsWithJvmBackend/indirectInlineCycle_ir.diag.txt
T
pyos f765963056 Split JVM backend diagnostics test into IR and non-IR versions
The IR backend no longer generates redundant INLINE_CALL_CYCLEs.
2020-04-08 07:04:16 +02:00

7 lines
276 B
Plaintext
Vendored

/indirectInlineCycle_ir.kt:8:24: error: the 'inlineFun2' invocation is a part of inline cycle
fun method() { inlineFun2(p) }
^
/indirectInlineCycle_ir.kt:13:5: error: the 'inlineFun1' invocation is a part of inline cycle
inlineFun1(p)
^