mirror of
https://github.com/nim-lang/Nim.git
synced 2026-08-03 05:59:02 +00:00
9 lines
151 B
Nim
9 lines
151 B
Nim
discard """
|
|
action: run
|
|
targets: '''c js'''
|
|
"""
|
|
|
|
import math
|
|
let x = -0.0
|
|
doAssert classify(x) == fcNegZero
|
|
doAssert classify(1 / -0.0) == fcNegInf |