make types more explicit

This commit is contained in:
Tom Dohrmann 2022-02-25 13:02:11 +01:00
parent 23f2976411
commit 868316abb8
2 changed files with 113 additions and 44 deletions

View file

@ -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>
);
}