1 # Test that when a symbol (foo) is both weakly and strongly referenced
2 # the strong undefined symbol always generates an error, whichever object
5 # RUN: llvm-mc -filetype=obj -triple=wasm32-unknown-unknown %s -o %t1.o
6 # RUN: llvm-mc -filetype=obj -triple=wasm32-unknown-unknown %S/Inputs/weak-undefined.s -o %t2.o
7 # RUN: not wasm-ld %t1.o %t2.o -o /dev/null 2>&1 | FileCheck %s
8 # RUN: not wasm-ld %t2.o %t1.o -o /dev/null 2>&1 | FileCheck %s
10 # CHECK: undefined symbol: foo
12 .functype foo () -> ()
16 .functype _start () -> ()