mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 06:44:46 +00:00
make types more explicit
This commit is contained in:
parent
23f2976411
commit
868316abb8
2 changed files with 113 additions and 44 deletions
|
@ -238,7 +238,7 @@ fn from_list() {
|
|||
|> Set.toList
|
||||
"#
|
||||
),
|
||||
RocList::default(),
|
||||
RocList::<i64>::default(),
|
||||
RocList<i64>
|
||||
);
|
||||
}
|
||||
|
@ -254,7 +254,7 @@ fn from_list_void() {
|
|||
|> Set.toList
|
||||
"#
|
||||
),
|
||||
RocList::default(),
|
||||
RocList::<i64>::default(),
|
||||
RocList<i64>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue