[Tests] Use stable order for ir/kotlinLike dumps

^KT-65406
This commit is contained in:
Pavel Kunyavskiy
2024-02-05 16:23:41 +01:00
committed by Space Team
parent 0fa42a9c11
commit e6f4d6e6fa
1265 changed files with 43896 additions and 48472 deletions
@@ -10,23 +10,10 @@ fun foo1(vararg xs: Int): Int {
return 1
}
fun use(r: KRunnable) {
}
fun testSamConstructor(): KRunnable {
return ::foo0 /*-> KRunnable */
}
fun testSamCosntructorOnAdapted(): KRunnable {
return { // BLOCK
local fun foo1() {
foo1() /*~> Unit */
}
::foo1
} /*-> KRunnable */
}
fun testSamConversion() {
use(r = ::foo0 /*-> KRunnable */)
}
@@ -40,3 +27,17 @@ fun testSamConversionOnAdapted() {
::foo1 /*-> KRunnable */
})
}
fun testSamCosntructorOnAdapted(): KRunnable {
return { // BLOCK
local fun foo1() {
foo1() /*~> Unit */
}
::foo1
} /*-> KRunnable */
}
fun use(r: KRunnable) {
}