a4f9fe1eaa
A user will rarely need those at the moment, and there's currently no other way to let him filter out them by himself
7 lines
195 B
Kotlin
Vendored
7 lines
195 B
Kotlin
Vendored
open class A(private val p: Int)
|
|
class B : A(42)
|
|
|
|
fun box() =
|
|
if (B::class.properties.isEmpty()) "OK"
|
|
else "Fail: invisible fake overrides should not appear in KClass.properties"
|