Create From Usage: Quick-fix for value parameters

This commit is contained in:
Alexey Sedunov
2014-09-30 14:09:38 +04:00
parent 73fc984c4c
commit 6ad2157806
58 changed files with 726 additions and 2 deletions
@@ -0,0 +1,8 @@
// "Create parameter 'foo'" "true"
// ACTION: Create local variable 'foo'
fun test(n: Int) {
val f: () -> Int = {
<caret>foo
}
}