23c0bdbd05
Do not suggest qualified expression's selector or a part of user type because they aren't really independent expressions
8 lines
84 B
Plaintext
Vendored
8 lines
84 B
Plaintext
Vendored
class A {
|
|
fun bar() = 1
|
|
}
|
|
fun foo(a: A) {
|
|
val a1 = a
|
|
val x = a1.bar()
|
|
}
|