KT-4794: Added functionality to KT-4574: Split If. Intention is now offered inside IF keyword

This commit is contained in:
gavinkeusch
2014-04-08 11:29:30 -07:00
parent f5fb2ea0ab
commit 216ea4940d
19 changed files with 320 additions and 30 deletions
@@ -0,0 +1,13 @@
// IS_APPLICABLE: false
fun doSomething<T>(a: T) {}
fun foo() {
val a = true
val b = false
val c = true
<caret>if (a) {
if (b && c) {
doSomething("test")
}
}
}