mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
17 lines
293 B
Rust
17 lines
293 B
Rust
//! Issue #56309
|
|
|
|
#![crate_type = "cdylib"]
|
|
|
|
#[link(wasm_import_module = "test")]
|
|
extern "C" {
|
|
fn log(message_data: u32, message_size: u32);
|
|
}
|
|
|
|
#[no_mangle]
|
|
pub fn main() {
|
|
let message = "Hello, world!";
|
|
unsafe {
|
|
log(message.as_ptr() as u32, message.len() as u32);
|
|
}
|
|
}
|