mirror of
https://github.com/roc-lang/roc.git
synced 2025-11-02 05:48:17 +00:00
fix one more wrong float
This commit is contained in:
parent
5bcfd91f3a
commit
a34965e05e
1 changed files with 2 additions and 2 deletions
|
|
@ -134,7 +134,7 @@ fn dict_nonempty_get() {
|
||||||
Err _ -> def
|
Err _ -> def
|
||||||
|
|
||||||
empty
|
empty
|
||||||
|> Dict.insert 42 1.23
|
|> Dict.insert 42 1.23f64
|
||||||
|> Dict.get 42
|
|> Dict.get 42
|
||||||
|> withDefault 0
|
|> withDefault 0
|
||||||
"#
|
"#
|
||||||
|
|
@ -152,7 +152,7 @@ fn dict_nonempty_get() {
|
||||||
Err _ -> def
|
Err _ -> def
|
||||||
|
|
||||||
Dict.empty {}
|
Dict.empty {}
|
||||||
|> Dict.insert 42 1.23
|
|> Dict.insert 42 1.23f64
|
||||||
|> Dict.get 43
|
|> Dict.get 43
|
||||||
|> withDefault 0
|
|> withDefault 0
|
||||||
"#
|
"#
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue