8 lines
170 B
Kotlin
Vendored
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>) {
|
|
}
|