mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
17 lines
267 B
Kotlin
Vendored
17 lines
267 B
Kotlin
Vendored
fun A.some(s: String) {
|
|
|
|
}
|
|
|
|
class A {
|
|
private fun some(s: String) {
|
|
|
|
}
|
|
|
|
fun usage() {
|
|
// private some shadows extension
|
|
some("lol"<caret>)
|
|
}
|
|
}
|
|
|
|
|
|
//Text: (<highlight>s: String</highlight>), Disabled: false, Strikeout: false, Green: true |