Fixes #5821 (float32 literal comparison issue) (#5825)

* Remove processing hints for async procs.
* Fixes #5821.
This commit is contained in:
Dominik Picheta
2017-05-17 14:57:06 +01:00
committed by Andreas Rumpf
parent 943aaecbe7
commit 06415eb69d
4 changed files with 19 additions and 7 deletions

View File

@@ -0,0 +1,13 @@
discard """
file: "tissue5821.nim"
output: ''''''
"""
proc main(): void =
let a: float32 = 47.11'f32
doAssert a == 47.11'f32
let b: float64 = 10.234402823e+38'f64
doAssert b != 10.123402823e+38'f64
doAssert b == 10.234402823e+38'f64
main()