mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
23 lines
332 B
Kotlin
Vendored
23 lines
332 B
Kotlin
Vendored
class C() {
|
|
constructor(x: Int): this() {
|
|
fun test() {
|
|
fun test() {}
|
|
}
|
|
}
|
|
|
|
constructor(y: String): this() {
|
|
fun test() {
|
|
fun test() {}
|
|
}
|
|
}
|
|
|
|
fun test() {
|
|
fun test() {}
|
|
}
|
|
|
|
init {
|
|
fun test() {
|
|
fun test() {}
|
|
}
|
|
}
|
|
} |