[K/N][tests] Added a bunch of tests on incremental compilation
This commit is contained in:
+6
@@ -0,0 +1,6 @@
|
||||
package test1
|
||||
|
||||
open class A {
|
||||
open fun baz() = "qxx"
|
||||
open fun foo() = 117
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package test1
|
||||
|
||||
open class A {
|
||||
open fun foo() = 117
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package test1
|
||||
|
||||
open class B : A() {
|
||||
open fun bar() = "zzz"
|
||||
}
|
||||
Reference in New Issue
Block a user