11 lines
270 B
Rust
11 lines
270 B
Rust
#[link(name = "...", wasm_import_module)] //~ ERROR: must be of the form
|
|
extern {}
|
|
|
|
#[link(name = "...", wasm_import_module(x))] //~ ERROR: must be of the form
|
|
extern {}
|
|
|
|
#[link(name = "...", wasm_import_module())] //~ ERROR: must be of the form
|
|
extern {}
|
|
|
|
fn main() {}
|