Files
kotlin-fork/idea/testData/refactoring/extractFunction/parameters/extractThis/implicitThisInExtension.kt
T
2014-04-17 19:01:20 +04:00

7 lines
99 B
Kotlin

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