Preserving annotations in incremental compilation.

This commit is contained in:
Evgeny Gerashchenko
2014-07-01 19:57:36 +04:00
parent 6c8a9ba378
commit 2259cc605f
6 changed files with 58 additions and 14 deletions
@@ -0,0 +1,13 @@
package test
annotation class Anno
[Anno] fun f() {
}
[Anno] val v1 = ""
var v2: String
get() = ""
[Anno] set(value) {
}