Boolean literal arguments: do not report for varargs parameters

#KT-29469 Fixed
This commit is contained in:
Toshiaki Kameyama
2019-01-24 14:42:52 +09:00
committed by Mikhail Glukhikh
parent 8672d2adc0
commit 3649e61c2f
4 changed files with 13 additions and 3 deletions
@@ -0,0 +1,6 @@
// PROBLEM: none
fun foo(vararg b: Boolean) {}
fun test() {
foo(true, true, true<caret>)
}