]> git.lizzy.rs Git - rust.git/blob - src/test/ui/wasm-import-module.rs
Rollup merge of #80733 - steffahn:prettify_pin_links, r=jyn514
[rust.git] / src / test / ui / wasm-import-module.rs
1 #[link(name = "...", wasm_import_module)] //~ ERROR: must be of the form
2 extern "C" {}
3
4 #[link(name = "...", wasm_import_module(x))] //~ ERROR: must be of the form
5 extern "C" {}
6
7 #[link(name = "...", wasm_import_module())] //~ ERROR: must be of the form
8 extern "C" {}
9
10 fn main() {}