1# REQUIRES: x86 2# RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %s -o %t.o 3# RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %s -o %t-dup.o 4# RUN: not %lld -o /dev/null %t-dup.o %t.o 2>&1 | FileCheck %s 5 6# CHECK: error: duplicate symbol: _main 7 8.text 9.global _main 10_main: 11 mov $0, %rax 12 ret 13