1# RUN: llvm-mc -filetype=obj -triple=wasm32-unknown-unknown -o %t1.o %s
2# RUN: llvm-mc -filetype=obj -triple=wasm32-unknown-unknown %S/Inputs/import-attributes.s -o %t2.o
3# RUN: not wasm-ld --export call_foo --allow-undefined -o %t.wasm %t1.o %t2.o 2>&1 | FileCheck %s
4
5  .globl  _start
6_start:
7  .functype _start () -> ()
8  call  foo
9  end_function
10
11.functype foo () -> ()
12.import_module  foo, bar
13
14# CHECK: wasm-ld: error: import module mismatch for symbol: foo
15# CHECK: >>> defined as bar in {{.*}}1.o
16# CHECK: >>> defined as baz in {{.*}}2.o
17