TrailingCommaInspection: should suggest fixes for call-site without warnings

#KT-39131 Fixed
This commit is contained in:
Dmitry Gridin
2020-05-22 19:39:55 +07:00
parent 10462c31d2
commit c78fd4aaca
28 changed files with 22396 additions and 6851 deletions
@@ -0,0 +1,8 @@
// COMPILER_ARGUMENTS: -XXLanguage:+TrailingCommas
// FIX: Add trailing comma
// DISABLE-ERRORS
fun a() {
b(1, 3, 2424,
awdawd<caret>)
}