Files
kotlin-fork/plugins/annotation-processing/testData/wrappers/kotlinWrappers/simple.kt
T
Yan Zhulanow 238340a143 Kapt: Simplify wrapper tests
(cherry picked from commit 1677984)
2016-10-07 16:28:25 +03:00

10 lines
195 B
Kotlin
Vendored

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