7 lines
147 B
Kotlin
7 lines
147 B
Kotlin
package test
|
|
|
|
import java.util.*
|
|
|
|
public open class ConstructorWithSeveralParams(integer: Int, intField : Int, collection : ArrayList<String>) {
|
|
}
|