Files
kotlin-fork/idea/testData/intentions/joinDeclarationAndAssignment/atAssignment.kt
T
2019-09-27 09:16:52 +03:00

9 lines
211 B
Kotlin
Vendored

fun test(repo: Repository, commitMessage: String) {
val hash: String<caret>
repo.git("add --verbose .")
hash = repo.git("commit -m $commitMessage")
}
class Repository {
fun git(s: String) = ""
}