12 lines
113 B
Kotlin
Vendored
12 lines
113 B
Kotlin
Vendored
class A {
|
|
fun B.foo() {}
|
|
}
|
|
|
|
interface B
|
|
|
|
fun bar(a: A, b: B) {
|
|
with (a) {
|
|
b.<caret>foo()
|
|
}
|
|
}
|