Files
kotlin-fork/compiler/testData/loadJava/compiledKotlin/fromLoadJava/kotlinSignature/ConstructorWithSeveralParams.kt
T

8 lines
170 B
Kotlin
Vendored

// TARGET_BACKEND: JVM
package test
import java.util.*
public open class ConstructorWithSeveralParams(integer: Int, intField : Int, collection : ArrayList<String>) {
}