"Split if" intention - renamed tests

This commit is contained in:
Valentin Kipyatkov
2015-05-14 14:18:39 +03:00
parent 8e16ddb00e
commit 8f797e8e69
42 changed files with 72 additions and 72 deletions
@@ -0,0 +1,10 @@
fun doSomething<T>(a: T) {}
fun foo() {
val a = true
val b = false
val c = true
if (a <caret>&& b && c) {
doSomething("test")
}
}