mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
10 lines
354 B
Java
10 lines
354 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) {
|
|
}
|
|
} |