mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
Kapt will process sources on each step of incremental compilation.
(cherry picked from commit 4cb2127)
44 lines
454 B
Kotlin
Vendored
44 lines
454 B
Kotlin
Vendored
annotation class Anno
|
|
|
|
@Anno
|
|
class Test
|
|
|
|
@Anno
|
|
interface Intf
|
|
|
|
class Test2 {
|
|
@Anno
|
|
fun test2Fun() {}
|
|
}
|
|
|
|
class Test3 {
|
|
@Anno
|
|
class Test3Nested
|
|
|
|
@Anno
|
|
inner class Test3Inner
|
|
}
|
|
|
|
class Test4
|
|
|
|
class Test5 {
|
|
fun test5Fun() {}
|
|
}
|
|
|
|
annotation class Surprise
|
|
|
|
@Surprise
|
|
class Test6
|
|
|
|
class Test7 {
|
|
@Surprise
|
|
fun test7Fun(): String = "ABC"
|
|
}
|
|
|
|
class Test8 {
|
|
@Anno
|
|
fun test8Fun1() {}
|
|
|
|
@Anno
|
|
fun test8Fun2() {}
|
|
} |