e15068c62f
^KT-61259
26 lines
708 B
Kotlin
Vendored
26 lines
708 B
Kotlin
Vendored
/*
|
|
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
|
*/
|
|
|
|
import kotlin.test.*
|
|
|
|
// Reproducer is copied from FloatingPointParser.unaryMinus()
|
|
inline fun <reified T> unaryMinus(value: T): T {
|
|
return when (value) {
|
|
is Float -> -value as T
|
|
is Double -> -value as T
|
|
else -> throw NumberFormatException()
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
val res1 = unaryMinus(0.0).toString()
|
|
if (res1 != "-0.0") return "FAIL 1: $res1"
|
|
|
|
val res2 = unaryMinus(0.0f).toString()
|
|
if (res2 != "-0.0") return "FAIL 2: $res2"
|
|
|
|
return "OK"
|
|
}
|