18 lines
234 B
Plaintext
Vendored
18 lines
234 B
Plaintext
Vendored
class C(i: Int){
|
|
class Nested
|
|
inner class Inner
|
|
|
|
fun bar() {
|
|
foo(<caret>)
|
|
}
|
|
}
|
|
|
|
@JvmName("foo1")
|
|
fun foo(p: () -> C.Nested){}
|
|
|
|
@JvmName("foo2")
|
|
fun foo(p: () -> C.Inner){}
|
|
|
|
// EXIST: ::Nested
|
|
// ABSENT: ::Inner
|