blob: 6d97779ff911dd7b91d417db86e14b5fdacf2f3d [file]
//@ only-wasm32-wasip1
//@ compile-flags: --crate-type=lib
//@ build-pass
//@ aux-build:internal_unstable.rs
#[macro_use]
extern crate internal_unstable;
asm_redirect!(
"test:",
".globl test",
".functype test (i32) -> (i32)",
"local.get 0",
"i32.const 1",
"i32.add",
"end_function",
".export_name test, test",
);