[K/N][tests] Added a couple of tests on caches

This commit is contained in:
Igor Chevdar
2022-12-20 20:15:12 +02:00
committed by Space Team
parent 342236491a
commit 758e9ea9ae
8 changed files with 168 additions and 1 deletions
@@ -0,0 +1 @@
fun foo() = 21
@@ -0,0 +1,4 @@
import kotlin.test.*
@Test
fun runTest() = println(bar())
@@ -0,0 +1 @@
fun bar() = 2 * foo()