Fix: String templates suggest removing curly braces for backtick escaped identifiers

This commit is contained in:
Burak Eregar
2019-03-27 01:20:44 +03:00
committed by Nikolay Krasko
parent 17a4506575
commit 9ab54d0e44
5 changed files with 18 additions and 3 deletions
@@ -0,0 +1,4 @@
// IS_APPLICABLE: true
fun foo(`object`: Any) {
val bar = "$<caret>{`object`}"
}
@@ -0,0 +1,4 @@
// IS_APPLICABLE: true
fun foo(`object`: Any) {
val bar = "$`object`"
}