mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
11 lines
355 B
Java
11 lines
355 B
Java
package test;
|
|
|
|
import java.util.*;
|
|
import jet.runtime.typeinfo.KotlinSignature;
|
|
|
|
public class ConstructorWithSeveralParams {
|
|
@KotlinSignature("fun ConstructorWithSeveralParams(integer : Int, intField : Int, collection: ArrayList<String>)")
|
|
public ConstructorWithSeveralParams(Integer integer, int intBasic, ArrayList<String> collection) {
|
|
}
|
|
}
|