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

8 lines
225 B
Plaintext
Vendored

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