fafea27283
Dumping the IR from a klib is useful for debugging klib compilations. ^KT-58877
8 lines
109 B
Kotlin
Vendored
8 lines
109 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
package test
|
|
|
|
class A {
|
|
private fun foo() = 42
|
|
public fun bar(z: Int) = foo() + z
|
|
}
|