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