13 lines
118 B
Kotlin
Vendored
13 lines
118 B
Kotlin
Vendored
fun String.foo() {}
|
|
|
|
fun String.bar() {
|
|
foo()
|
|
}
|
|
|
|
class My {
|
|
fun bar() {
|
|
foo()
|
|
}
|
|
}
|
|
|
|
fun My.foo() {} |