Add new known bug.

This commit is contained in:
Eric Dobson 2013-10-29 21:50:48 -07:00
parent 83b43df455
commit 4f5e10d730

View File

@ -71,6 +71,9 @@
;; Addition of multiple args should keep exact semantics for exact args
(bad-opt (+ (expt 10 501) (expt -10 501) 1.0+1.0i))
;; Magnitude should not overflow unless necessary
(bad-opt (magnitude 3.0e300+4.0e300i))
;; Negation should correctly compute sign of 0.0
(bad-opt (- 0.0+0.0i))
(bad-opt (- 0+0i 0.0+0.0i))