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

10 lines
191 B
Kotlin
Vendored

// test.Simple
package test
abstract class Simple(private val prop: String) {
protected val anotherProp: Int = 5
abstract fun strFun(val x: Long): String
fun voidFun() {}
}