Files
kotlin-fork/compiler/testData/cfg/bugs/kt10105.instructions
T
Ilya Chernikov 6356807997 Reapply "Only create descriptors for candidates with lambda args"
#KT-36247 fixed
A lot of testdata changed because significanly less (error) descriptors
are created for unresolved types, so diagnostics became different.
2020-02-14 11:41:30 +01:00

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>]
=====================