1 # RUN: not llvm-mc -filetype=obj -triple i386-unknown-unknown %s 2> %t 2 # RUN: FileCheck -input-file %t %s 3 4 5 .extern foo 6 7 # CHECK: : expected absolute expression 8 . = foo + 10 9 .byte 1 10