5c19cb3fcb
Co-authored-by: Alexander Udalov <Alexander.Udalov@jetbrains.com>
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)
|
|
} |