mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
Do not suggest qualified expression's selector or a part of user type because they aren't really independent expressions
7 lines
79 B
Kotlin
Vendored
7 lines
79 B
Kotlin
Vendored
class A {
|
|
fun bar() = 1
|
|
}
|
|
fun foo(a: A) {
|
|
val x = a.bar().val<caret>
|
|
}
|