mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
ownership
This commit is contained in:
parent
9d057a1227
commit
98708d689e
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ fn wasmer_create_app(app_bytes_ptr: u32, app_bytes_len: u32) -> u32 {
|
|||
println!("Failed to create Wasm module\n{:?}", e);
|
||||
if false {
|
||||
let path = std::env::temp_dir().join("roc_repl_test_invalid_app.wasm");
|
||||
fs::write(path, app_module_bytes).unwrap();
|
||||
fs::write(&path, app_module_bytes).unwrap();
|
||||
println!("Wrote invalid wasm to {:?}", path);
|
||||
}
|
||||
return false.into();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue