mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-21 14:55:24 +00:00
* Remove processing hints for async procs. * Fixes #5821.
This commit is contained in:
committed by
Andreas Rumpf
parent
943aaecbe7
commit
06415eb69d
13
tests/float/tissue5821.nim
Normal file
13
tests/float/tissue5821.nim
Normal 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()
|
||||
Reference in New Issue
Block a user