summary refs log tree commit diff
path: root/src/test/ui/wasm-import-module.rs
blob: 4152a1065ca14e8d1d1d8e48079d690d7ee5a187 (plain)
1
2
3
4
5
6
7
8
9
10
#[link(name = "...", wasm_import_module)] //~ ERROR: must be of the form
extern "C" {}

#[link(name = "...", wasm_import_module(x))] //~ ERROR: must be of the form
extern "C" {}

#[link(name = "...", wasm_import_module())] //~ ERROR: must be of the form
extern "C" {}

fn main() {}