Files
kotlin-fork/idea/testData/refactoring/extractFunction/parameters/extractThis/implicitThisInExtension.kt
T
2014-06-23 21:10:12 +04:00

8 lines
112 B
Kotlin

// PARAM_TYPES: Z
class Z(val a: Int)
// SIBLING:
fun Z.foo(): Int {
return <selection>a</selection> + 1
}