[TD] Union ir dumps of different test files
This commit is contained in:
committed by
TeamCityServer
parent
4752924b13
commit
77115cea92
+16
@@ -0,0 +1,16 @@
|
||||
fun <F : Any?> test(j: J<F>) {
|
||||
j.getFoo<F>() /*~> Unit */
|
||||
j.setFoo<F>(x = 1)
|
||||
{ // BLOCK
|
||||
val tmp0_receiver: J<F> = j
|
||||
{ // BLOCK
|
||||
val tmp1: Int = tmp0_receiver.getFoo<F>()
|
||||
tmp0_receiver.setFoo<F>(x = tmp1.inc())
|
||||
tmp1
|
||||
}
|
||||
} /*~> Unit */
|
||||
{ // BLOCK
|
||||
val tmp2_receiver: J<F> = j
|
||||
tmp2_receiver.setFoo<F>(x = tmp2_receiver.getFoo<F>().plus(other = 1))
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user