]> git.lizzy.rs Git - rust.git/blob - src/test/ui/wasm-import-module.rs
Auto merge of #84589 - In-line:zircon-thread-name, r=JohnTitor
[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() {}