Files
kotlin-fork/compiler/testData/ir/interpreter/variableShadowing.kt
T
2021-06-07 15:35:12 +03:00

8 lines
158 B
Kotlin
Vendored

@CompileTimeCalculation
fun returnValueFromA(a: Int, b: Int): Int {
val a = b
return a
}
const val num = <!EVALUATED: `2`!>returnValueFromA(1, 2)<!>