Files
kotlin-fork/idea/testData/inspectionsLocal/selfReferenceConstructorParameter/vararg.kt
T
2020-02-12 16:35:26 +03:00

6 lines
81 B
Kotlin
Vendored

// PROBLEM: none
class Foo(vararg children: Foo<caret>)
fun test() {
Foo()
}