"Constructor has non-null self reference parameter": don't report for vararg parameter

#KT-36160 Fixed
This commit is contained in:
Toshiaki Kameyama
2020-01-30 19:54:36 +09:00
committed by Mikhail Glukhikh
parent f3f88cae7a
commit 3ebad2acec
3 changed files with 12 additions and 0 deletions
@@ -0,0 +1,6 @@
// PROBLEM: none
class Foo(vararg children: Foo<caret>)
fun test() {
Foo()
}