mirror of
https://github.com/vlang/v.git
synced 2025-09-13 22:42:26 +03:00
fix
This commit is contained in:
parent
dd89989de7
commit
b1cbc4c852
1 changed files with 6 additions and 6 deletions
|
@ -1,14 +1,14 @@
|
||||||
vlib/v/checker/tests/map_repeated_float_key_err.vv:10:3: error: duplicate key "1.e-06" in map literal
|
vlib/v/checker/tests/map_repeated_float_key_err.vv:10:3: error: duplicate key "1.e-06" in map literal
|
||||||
8 | 0.000001: 'small-1'
|
8 | 0.000001: 'small-1'
|
||||||
9 | 0.00001: 'small-2',
|
9 | 0.00001: 'small-2'
|
||||||
10 | 1.e-06: 'small-3',
|
10 | 1.e-06: 'small-3'
|
||||||
| ~~~~~~
|
| ~~~~~~
|
||||||
11 | 0.00001: 'small-4'
|
11 | 0.00001: 'small-4'
|
||||||
12 | }
|
12 | }
|
||||||
vlib/v/checker/tests/map_repeated_float_key_err.vv:11:3: error: duplicate key "0.00001" in map literal
|
vlib/v/checker/tests/map_repeated_float_key_err.vv:11:3: error: duplicate key "0.00001" in map literal
|
||||||
9 | 0.00001: 'small-2',
|
9 | 0.00001: 'small-2'
|
||||||
10 | 1.e-06: 'small-3',
|
10 | 1.e-06: 'small-3'
|
||||||
11 | 0.00001: 'small-4'
|
11 | 0.00001: 'small-4'
|
||||||
| ~~~~~~~
|
| ~~~~~~~
|
||||||
12 | }
|
12 | }
|
||||||
13 | dump(m64)
|
13 | dump(m64)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue