mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
Use usize instead of pointer type for wasm tests
This commit is contained in:
parent
24a38c4a26
commit
ca8f83b896
2 changed files with 3 additions and 7 deletions
|
@ -1368,7 +1368,6 @@ fn linked_list_is_empty_2() {
|
|||
fn linked_list_singleton() {
|
||||
// verifies only that valid llvm is produced
|
||||
|
||||
use std::os::raw::c_void;
|
||||
assert_evals_to!(
|
||||
indoc!(
|
||||
r#"
|
||||
|
@ -1381,7 +1380,7 @@ fn linked_list_singleton() {
|
|||
"#
|
||||
),
|
||||
0,
|
||||
*const c_void,
|
||||
usize,
|
||||
|_| 0
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue