mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
12 lines
301 B
Kotlin
Vendored
12 lines
301 B
Kotlin
Vendored
open class A(x: Int) {
|
|
fun m(x: Int) = 1
|
|
fun m(x: Int, y: Boolean) = 2
|
|
|
|
fun d(x: Int) {
|
|
m(1, <caret>false)
|
|
}
|
|
}
|
|
/*
|
|
Text: (x: Int), Disabled: true, Strikeout: false, Green: false
|
|
Text: (x: Int, <highlight>y: Boolean</highlight>), Disabled: false, Strikeout: false, Green: true
|
|
*/ |