KT-7144 Intention action on an argument in a call to use named arguments form

#KT-7144 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-06-23 21:05:24 +03:00
parent c689af142a
commit 9d83510af5
33 changed files with 309 additions and 15 deletions
@@ -0,0 +1,6 @@
// IS_APPLICABLE: false
fun foo(s: String, handler: () -> Unit){}
fun bar() {
foo("") <caret>{ }
}