mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 22:09:09 +00:00
Fix some tests that were expecting usize over u64
This commit is contained in:
parent
6a6c25d32d
commit
50ea255703
9 changed files with 27 additions and 22 deletions
|
@ -1367,6 +1367,8 @@ fn linked_list_is_empty_2() {
|
|||
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm", feature = "gen-dev"))]
|
||||
fn linked_list_singleton() {
|
||||
// verifies only that valid llvm is produced
|
||||
|
||||
use std::os::raw::c_void;
|
||||
assert_evals_to!(
|
||||
indoc!(
|
||||
r#"
|
||||
|
@ -1379,7 +1381,7 @@ fn linked_list_singleton() {
|
|||
"#
|
||||
),
|
||||
0,
|
||||
usize,
|
||||
*const c_void,
|
||||
|_| 0
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue