KotlinFunctionCallUsage: fix psi tree
#KT-38632
This commit is contained in:
Vendored
+1
-1
@@ -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
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -4,5 +4,5 @@
|
||||
class A<T>(val n: T, var foo: String)
|
||||
|
||||
fun test() {
|
||||
A(1, ).foo = "1"
|
||||
A(1,).foo = "1"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user