add tests for incremental compilation when only private part changed
This commit is contained in:
+6
@@ -0,0 +1,6 @@
|
||||
package test
|
||||
|
||||
public class ClassA() {
|
||||
public fun meth1() {}
|
||||
private fun meth2(x: Int): Unit {}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
package test
|
||||
|
||||
public class ClassA() {
|
||||
public fun meth1() {}
|
||||
private fun meth2(x: String, y: Int): Int = 10
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
Cleaning output files:
|
||||
out/production/module/test/ClassA.class
|
||||
End of files
|
||||
Compiling files:
|
||||
src/ClassA.kt
|
||||
End of files
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package test
|
||||
|
||||
public object Usage {
|
||||
public fun f() {
|
||||
ClassA().meth1()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user