Files
kotlin-fork/jps/jps-plugin/testData/incremental/pureKotlin/annotations/annotations.kt
T
Evgeny Gerashchenko 48c9728e70 Moved current incremental compiler test data into subdirectory.
Tweaked test generator to avoid creating test methods for parent directory of tests.

Original commit: 479711e812
2014-07-10 15:05:20 +04:00

14 lines
137 B
Kotlin

package test
annotation class Anno
[Anno] fun f() {
}
[Anno] val v1 = ""
var v2: String
get() = ""
[Anno] set(value) {
}