6356807997
#KT-36247 fixed A lot of testdata changed because significanly less (error) descriptors are created for unresolved types, so diagnostics became different.
23 lines
622 B
Plaintext
Vendored
23 lines
622 B
Plaintext
Vendored
== foo ==
|
|
fun foo() {
|
|
int x = ()()
|
|
}
|
|
---------------------
|
|
L0:
|
|
1 <START>
|
|
2 mark({ int x = ()() })
|
|
magic[UNRESOLVED_CALL](int) -> <v0>
|
|
mark(= ())
|
|
magic[UNRESOLVED_CALL](= ()) -> <v1>
|
|
mark(= ()())
|
|
magic[UNRESOLVED_CALL](= ()()|<v1>) -> <v2>
|
|
mark(int x = ()())
|
|
magic[UNRESOLVED_CALL](int x = ()()|<v0>, <v2>) -> <v3>
|
|
L1:
|
|
1 <END> NEXT:[<SINK>]
|
|
error:
|
|
<ERROR> PREV:[]
|
|
sink:
|
|
<SINK> PREV:[<ERROR>, <END>]
|
|
=====================
|