27e7f13335
#KT-16402 Fixed
8 lines
119 B
Kotlin
Vendored
8 lines
119 B
Kotlin
Vendored
class Foo(val bar: Bar)
|
|
class Bar(val baz: String)
|
|
|
|
fun foo(foo: Foo) {
|
|
val s = "$foo.bar.<caret>"
|
|
}
|
|
|
|
// EXIST: baz |