mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
10 lines
193 B
Plaintext
Vendored
10 lines
193 B
Plaintext
Vendored
// PARAM_TYPES: kotlin.Int
|
|
// PARAM_DESCRIPTOR: val i: kotlin.Int defined in test
|
|
fun test() {
|
|
val i = 0
|
|
__dummyTestFun__(`i`)
|
|
}
|
|
|
|
private fun __dummyTestFun__(i: Int) {
|
|
`i` plus i
|
|
} |