// 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() {} }