e9c9d5731e
This is in preparation for enabling the tests for FIR which will be easier to do when the tests are on the new infrastructure.
16 lines
190 B
Kotlin
Vendored
16 lines
190 B
Kotlin
Vendored
// FILE: test.kt
|
|
|
|
fun main(args: Array<String>) {
|
|
args[0]
|
|
}
|
|
|
|
fun box() {
|
|
main(arrayOf("OK"))
|
|
}
|
|
|
|
// EXPECTATIONS
|
|
// test.kt:8 box
|
|
// test.kt:4 main
|
|
// test.kt:5 main
|
|
// test.kt:9 box
|