Fixed deprecated symbol usage fix for functions with optional parameters from libraries

#KT-8525 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-08-11 13:01:47 +03:00
parent d53b990655
commit 1fd0578b9e
6 changed files with 44 additions and 14 deletions
@@ -0,0 +1,5 @@
// "Replace with 'prefix + joinTo(StringBuilder(), separator, "", postfix, limit, truncated, transform)'" "true"
fun foo() {
"" + listOf(1, 2, 3).joinTo(StringBuilder(), ", ", "", limit = 10)
}