mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
16 lines
284 B
Kotlin
Vendored
16 lines
284 B
Kotlin
Vendored
// A
|
|
class A {
|
|
fun f(i: Int, s: Double) {}
|
|
fun f(i: Int, s: Double) {}
|
|
|
|
|
|
fun g(i: Int, s: Double): Int {}
|
|
fun g(s: Int, i: Double): String {}
|
|
|
|
private val i: Int = 0
|
|
private val i: String = ""
|
|
|
|
private val j: String = "a"
|
|
private val j: String = "b"
|
|
}
|