mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
19 lines
257 B
Kotlin
Vendored
19 lines
257 B
Kotlin
Vendored
package test
|
|
|
|
import apt.Anno
|
|
import generated.Test as TestGenerated
|
|
|
|
@Anno
|
|
class Test {
|
|
@field:Anno
|
|
val property: String = ""
|
|
|
|
@Anno
|
|
fun function() {
|
|
|
|
}
|
|
}
|
|
|
|
fun main() {
|
|
println("Generated class: " + TestGenerated::class.java.name)
|
|
} |