Checking for constants values in incremental compiler.

This commit is contained in:
Evgeny Gerashchenko
2014-05-21 22:21:35 +04:00
parent af173484cb
commit e89b59a745
10 changed files with 91 additions and 6 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