KotlinFunctionCallUsage: fix psi tree

#KT-38632
This commit is contained in:
Dmitry Gridin
2020-04-29 14:06:19 +07:00
parent 11a3482970
commit ee0b7426c4
3 changed files with 9 additions and 5 deletions
@@ -4,5 +4,5 @@
class A<T>(val n: T, val foo: A<Int>)
fun test() {
val a: A<Int> = A(1, ).foo
val a: A<Int> = A(1,).foo
}
@@ -4,5 +4,5 @@
class A<T>(val n: T, var foo: String)
fun test() {
A(1, ).foo = "1"
A(1,).foo = "1"
}