[JS IR] Add IC invalidation tests
This commit is contained in:
committed by
Space
parent
210cc67041
commit
28b1f1c50f
@@ -0,0 +1,7 @@
|
||||
interface Producer<out T> {
|
||||
fun produce(): T
|
||||
}
|
||||
|
||||
interface Consumer<in T> {
|
||||
fun consume(v: T): Int
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
// TODO: After KT-51099, m.kt from main module must be dirty
|
||||
interface Producer<T> {
|
||||
fun produce(): T
|
||||
}
|
||||
|
||||
interface Consumer<in T> {
|
||||
fun consume(v: T): Int
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
// TODO: After KT-51099, m.kt from main module must be dirty
|
||||
interface Producer<T> {
|
||||
fun produce(): T
|
||||
}
|
||||
|
||||
interface Consumer<T> {
|
||||
fun consume(v: T): Int
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
STEP 0:
|
||||
dependencies: stdlib
|
||||
modifications:
|
||||
U : l1.kt.0.txt -> l1.kt
|
||||
dirty: l1.kt
|
||||
STEP 1:
|
||||
dependencies: stdlib
|
||||
modifications:
|
||||
U : l1.kt.1.txt -> l1.kt
|
||||
dirty: l1.kt
|
||||
STEP 1:
|
||||
dependencies: stdlib
|
||||
modifications:
|
||||
U : l1.kt.2.txt -> l1.kt
|
||||
dirty: l1.kt
|
||||
Reference in New Issue
Block a user