8 lines
194 B
Kotlin
Vendored
8 lines
194 B
Kotlin
Vendored
// KT-64803
|
|
|
|
fun generateClosure(): () -> Unit = {}
|
|
|
|
fun box(): String {
|
|
return if (generateClosure().hashCode() != generateClosure().hashCode()) "Fail: hashCode are not equals" else "OK"
|
|
}
|