mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 13:29:12 +00:00
fix wasm test
This commit is contained in:
parent
96b5d365b2
commit
ac33fd3237
1 changed files with 2 additions and 2 deletions
|
@ -1876,9 +1876,9 @@ fn llvm_wasm_str_layout() {
|
|||
|> Str.reserve 42
|
||||
"#
|
||||
),
|
||||
[0, 5, 42],
|
||||
[0, 5, 1],
|
||||
[u32; 3],
|
||||
|[_ptr, len, cap]: [u32; 3]| [0, len, cap]
|
||||
|[_ptr, len, cap]: [u32; 3]| [0, len, if cap >= 42 { 1 } else { 0 }]
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue