Files
kotlin/plugins/annotation-processing/testData/elements/GetAllMembers.kt
Yan Zhulanow 927280f7ce Kapt: add some JeElement tests
(cherry picked from commit 948a4b6)
2016-08-29 16:31:16 +03:00

8 lines
160 B
Kotlin
Vendored

@Deprecated("")
class MyClass {
var myProperty: String = "A"
fun myFunction() = object : java.lang.Runnable {
override fun run() {}
}
}