mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 00:21:26 +00:00
19 lines
204 B
Kotlin
Vendored
19 lines
204 B
Kotlin
Vendored
// FILE: A.java
|
|
|
|
class A {
|
|
public A() {}
|
|
|
|
public A(String x) {}
|
|
|
|
public A(long l, double z) {}
|
|
}
|
|
|
|
// FILE: 1.kt
|
|
|
|
fun box(): String {
|
|
A()
|
|
A("")
|
|
A(0.toLong(), 0.0)
|
|
return "OK"
|
|
}
|