Files
kotlin-fork/idea/idea-completion/testData/handlers/basic/stringTemplate/ValInObject.kt.after
T
Valentin Kipyatkov 5bf701ab03 KT-13047 Autocomplete inserts a fully-qualified variable name inside a String
KT-12083 String interpolation -- auto {} if there is a letter after cursor

 #KT-13047 Fixed
 #KT-12083 Fixed
2016-09-13 12:02:10 +03:00

15 lines
138 B
Plaintext
Vendored

package p
object OOO {
val vvv = 1
}
class C {
fun foo() {
"${OOO.vvv}"
}
}
// ELEMENT: vvv
// INVOCATION_COUNT: 2