[K/N][tests] Added a bunch of tests on incremental compilation
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import kotlin.test.*
|
||||
import test1.*
|
||||
import test2.*
|
||||
|
||||
class C : B() {
|
||||
override fun bar() = "qzz"
|
||||
}
|
||||
|
||||
@Test
|
||||
fun runTest() {
|
||||
assertEquals("qzz", bar(C()))
|
||||
}
|
||||
Reference in New Issue
Block a user