mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
10 lines
173 B
Kotlin
Vendored
10 lines
173 B
Kotlin
Vendored
class Foo private constructor(s: String) {
|
|
|
|
private fun foo(s: String) {}
|
|
|
|
companion object {
|
|
fun foo() {
|
|
Foo("123").foo("456")
|
|
}
|
|
}
|
|
} |