Files
kotlin-fork/idea/testData/refactoring/extractFunction/parameters/misc/addPrefixToBackticks.kt.after
T

16 lines
365 B
Plaintext
Vendored

// PARAM_TYPES: X
// PARAM_TYPES: Y
// PARAM_DESCRIPTOR: internal final fun X.test(): kotlin.Unit defined in Y
// PARAM_DESCRIPTOR: internal final class Y defined in root package
class X(val x: Int)
// SIBLING:
class Y(val y: Int) {
fun X.test() {
__dummyTestFun__(this, this@Y)
}
}
private fun __dummyTestFun__(x: X, y1: Y) {
x.`x`plus y1.y
}