Checking for constants values in incremental compiler.

Original commit: e89b59a745
This commit is contained in:
Evgeny Gerashchenko
2014-05-21 22:21:35 +04:00
parent 375354e5ee
commit a36e100d01
9 changed files with 48 additions and 2 deletions
@@ -0,0 +1,7 @@
Cleaning output files:
out/production/module/test/TestPackage-const-*.class
out/production/module/test/TestPackage.class
End of files
Compiling files:
src/const.kt
End of files
@@ -0,0 +1,3 @@
package test
val CONST = "foo"
@@ -0,0 +1,3 @@
package test
val CONST = "foo"
@@ -0,0 +1,4 @@
package test
deprecated(CONST + CONST)
class Usage
@@ -0,0 +1,13 @@
Cleaning output files:
out/production/module/test/TestPackage-const-*.class
out/production/module/test/TestPackage.class
End of files
Compiling files:
src/const.kt
End of files
Cleaning output files:
out/production/module/test/Usage.class
End of files
Compiling files:
src/usage.kt
End of files
@@ -0,0 +1,3 @@
package test
val CONST = "foo"
@@ -0,0 +1,3 @@
package test
val CONST = "bar"
@@ -0,0 +1,4 @@
package test
deprecated(CONST + CONST)
class Usage