6be65e7d1a
This fixes two relevant tests with smart casts #KT-25933 Fixed
4 lines
140 B
Kotlin
Vendored
4 lines
140 B
Kotlin
Vendored
// FIX: Replace total order equality with IEEE 754 equality
|
|
|
|
fun <T> test(a: T, b: T) =
|
|
a is Double && b is Double && a.<caret>equals(b) |