2b387e7a10
#KT-56913 Fixed #KT-56926 Fixed
21 lines
258 B
Kotlin
Vendored
21 lines
258 B
Kotlin
Vendored
// FILE: test.kt
|
|
|
|
// Comment before
|
|
fun foo(i: Int = 1): Int {
|
|
return i
|
|
}
|
|
|
|
fun box() {
|
|
foo()
|
|
}
|
|
|
|
// EXPECTATIONS JVM JVM_IR
|
|
// test.kt:9 box
|
|
// test.kt:5 foo
|
|
// test.kt:9 box
|
|
// test.kt:10 box
|
|
|
|
// EXPECTATIONS JS_IR
|
|
// test.kt:9 box
|
|
// test.kt:10 box
|