743be477ec
JavaFileObject.getName() now returns a path as required. (cherry picked from commit c611f9b)
9 lines
136 B
Kotlin
Vendored
9 lines
136 B
Kotlin
Vendored
annotation class Inject
|
|
|
|
class Test {
|
|
@Inject
|
|
fun myFunc(): String = "Mary"
|
|
|
|
@field:Inject
|
|
val myField: String = "Tom"
|
|
} |