Files
kotlin-fork/idea/testData/refactoring/changeSignature/PropagateWithThisQualificationInClassMemberBefore.kt
T
2015-07-09 20:47:48 +03:00

8 lines
103 B
Kotlin
Vendored

fun <caret>foo(): Int = 1
class A(val n: Int) {
fun bar(): Int {
return foo() + n
}
}