[Tests] Make build green again

This commit is contained in:
Anastasiya Shadrina
2021-07-26 20:59:49 +07:00
committed by TeamCityServer
parent 8ec418e90f
commit f9e6365461
11 changed files with 30 additions and 33 deletions
@@ -13,36 +13,36 @@ fun <T> f(lazy1: Lazy<Int>, lazy2: Lazy<CharSequence>, lazyT: Lazy<T>, lazyLazyT
with(lazy1) {
with(lazy2) {
test1()
test2()
test3()
<!NEW_INFERENCE_NO_INFORMATION_FOR_PARAMETER!>test2<!>()
<!NEW_INFERENCE_NO_INFORMATION_FOR_PARAMETER!>test3<!>()
}
}
with(lazy2) {
with(lazy1) {
test1()
test2()
test3()
<!NEW_INFERENCE_NO_INFORMATION_FOR_PARAMETER!>test2<!>()
<!NEW_INFERENCE_NO_INFORMATION_FOR_PARAMETER!>test3<!>()
}
}
with(lazyT) {
with(lazy1) {
test1()
test2()
test3()
<!NEW_INFERENCE_NO_INFORMATION_FOR_PARAMETER!>test2<!>()
<!NEW_INFERENCE_NO_INFORMATION_FOR_PARAMETER!>test3<!>()
}
}
with(lazyLazyT) {
with(lazy1) {
test1()
test2()
test3()
<!NEW_INFERENCE_NO_INFORMATION_FOR_PARAMETER!>test2<!>()
<!NEW_INFERENCE_NO_INFORMATION_FOR_PARAMETER!>test3<!>()
}
}
with(lazy1) {
with(lazyLazyT) {
test1()
test2()
test3()
<!NEW_INFERENCE_NO_INFORMATION_FOR_PARAMETER!>test2<!>()
<!NEW_INFERENCE_NO_INFORMATION_FOR_PARAMETER!>test3<!>()
}
}
}