Files
kotlin-fork/plugins/annotation-processing/testData/withFiler/OneRound.kt
T
Yan Zhulanow 743be477ec Kapt: Add tests with Filer.
JavaFileObject.getName() now returns a path as required.
(cherry picked from commit c611f9b)
2016-09-10 17:36:15 +03:00

9 lines
132 B
Kotlin
Vendored

annotation class Inject
annotation class Inject2
@Inject2
class Test {
@Inject
@Inject2
fun myFunc(): String = "Mary"
}