blob: 618bf1952aa5d7c83962ea4b6b27dc486010e196 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#[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() {}
|