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