mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
Fix for KT-8668: java.lang.ClassFormatError: Duplicate field name&signature (based on property access) #KT-8668 Fixed
8 lines
160 B
Kotlin
Vendored
8 lines
160 B
Kotlin
Vendored
import test.*
|
|
|
|
fun box(): String {
|
|
var result = ""
|
|
B("O", "K").test { it -> result += it }
|
|
return if (result == "OOKK") "OK" else "fail: $result"
|
|
}
|