"Remove argument name" intention

This commit is contained in:
Valentin Kipyatkov
2015-06-23 21:32:20 +03:00
parent 6988297511
commit 46ad1b8573
19 changed files with 195 additions and 0 deletions
@@ -0,0 +1,6 @@
// IS_APPLICABLE: false
fun foo(s: String, b: Boolean){}
fun bar() {
foo("", b = t<caret>rue)
}