Files
kotlin-fork/idea/testData/refactoring/extractFunction/parameters/misc/idWithRequiredBackticks.kt.after
T
2016-04-26 15:21:33 +03:00

10 lines
197 B
Plaintext
Vendored

// PARAM_TYPES: kotlin.Int
// PARAM_DESCRIPTOR: val 0: kotlin.Int defined in test
fun test() {
val `0` = 0
__dummyTestFun__(`0`)
}
private fun __dummyTestFun__(`0`: Int) {
`0` plus 1
}