rust/src/test/ui/wasm-import-module.rs
2019-04-22 16:57:01 +01:00

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() {}