"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,11 @@
// IS_APPLICABLE: false
fun doSomething<T>(a: T) {}
fun foo() {
val a = true
val b = false
fun test(a: Boolean): Boolean { return false }
if (test(a &<caret>& b)) {
doSomething("test")
}
}