Files
kotlin-fork/plugins/kapt3/kapt3-cli/testData/integration-kapt4/kt33800/Test.kt
T
2023-08-31 22:19:13 +00:00

19 lines
308 B
Kotlin
Vendored

package test
import apt.Anno
import generated.Example as ExampleGenerated
@Anno
class Example() {
private val callback = object : Any() {
val obj = Object()
}
fun call() {
callback.obj
}
}
fun main() {
println("Generated class: " + ExampleGenerated::class.java.name)
}