2018-07-16 11:31:14 -07:00
|
|
|
error: must be of the form #[link(wasm_import_module = "...")]
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/wasm-import-module.rs:1:22
|
2018-02-10 14:28:17 -08:00
|
|
|
|
|
2018-07-16 11:31:14 -07:00
|
|
|
LL | #[link(name = "...", wasm_import_module)] //~ ERROR: must be of the form
|
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
2018-02-10 14:28:17 -08:00
|
|
|
|
2018-07-16 11:31:14 -07:00
|
|
|
error: must be of the form #[link(wasm_import_module = "...")]
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/wasm-import-module.rs:4:22
|
2018-02-10 14:28:17 -08:00
|
|
|
|
|
2018-07-16 11:31:14 -07:00
|
|
|
LL | #[link(name = "...", wasm_import_module(x))] //~ ERROR: must be of the form
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
2018-02-10 14:28:17 -08:00
|
|
|
|
2018-07-16 11:31:14 -07:00
|
|
|
error: must be of the form #[link(wasm_import_module = "...")]
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/wasm-import-module.rs:7:22
|
2018-07-16 11:31:14 -07:00
|
|
|
|
|
|
|
|
LL | #[link(name = "...", wasm_import_module())] //~ ERROR: must be of the form
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2018-02-10 14:28:17 -08:00
|
|
|
|