mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
A synthetic property descriptor created for `B.value` (see the added test) should not be equal to the normal descriptor created by the fake override construction algorithm. Otherwise we can't reach this synthetic non-abstract descriptor when building bridges in `C`, which results in exception. #KT-31367 Fixed
6 lines
53 B
Kotlin
Vendored
6 lines
53 B
Kotlin
Vendored
package test
|
|
|
|
interface I {
|
|
val value: String?
|
|
}
|