mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
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"
|
|
} |