Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib
pyos 63b0708ed5 FIR CFG: join/unify data flow from postponed lambdas at each level
For example:

    foo(
        // `if` joins A & B
        if (condition)
            run { ... } // A
        else
            run { ... }, // B
        run { ... } // C
    ) // `foo` unifies `A & B` and `C`, so if it is not resolved itself,
      // further `if`s, `when`s, safe calls outside it, etc. continue
      // building the correct type predicate until the next completed
      // call.

^KT-44512 Fixed
2022-06-15 20:05:49 +00:00
..
2022-02-25 11:46:27 +00:00
2021-11-12 15:20:43 +03:00
2021-11-12 15:20:45 +03:00
2022-05-27 13:56:34 +00:00
2021-11-12 15:20:44 +03:00
2021-05-28 15:36:24 +03:00
2022-02-25 11:46:27 +00:00
2021-05-28 15:36:24 +03:00
2022-02-17 15:04:36 +00:00