rust/src/test/ui/wasm-import-module.rs
2018-12-25 21:08:33 -07:00

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