Files
kotlin-fork/idea/idea-completion/testData/handlers/basic/stringTemplate/AfterDot4.kt
T
2021-06-03 19:39:07 +03:00

9 lines
139 B
Kotlin
Vendored

// FIR_COMPARISON
class Foo(val bar: Bar)
class Bar(val baz: String)
fun foo(foo: Foo) {
val s = "$foo.bar.<caret>"
}
// ELEMENT: baz