Fix AssertionError on completing after template in string literal

#KT-16402 Fixed
This commit is contained in:
Toshiaki Kameyama
2017-09-18 15:26:41 +09:00
committed by Simon Ogorodnik
parent 0560ba7929
commit 27e7f13335
7 changed files with 52 additions and 3 deletions
@@ -0,0 +1,8 @@
class Foo(val bar: Bar)
class Bar(val baz: String)
fun foo(foo: Foo) {
val s = "$foo.bar.<caret>"
}
// EXIST: baz