9 lines
105 B
Kotlin
Vendored
9 lines
105 B
Kotlin
Vendored
class Foo {
|
|
class Bar {
|
|
fun bar() {}
|
|
}
|
|
}
|
|
|
|
fun test(bar: Foo.Bar) {
|
|
bar.<caret>bar()
|
|
} |