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
+5
View File
@@ -0,0 +1,5 @@
fun foo(s: String, b: Boolean){}
fun bar() {
foo("", true<caret>)
}