1; RUN: not llvm-ml -filetype=s %s /Fo - 2>&1 | FileCheck %s --implicit-check-not=error: 2 3.data 4 5; <var> EQU <expression> can't be redefined to a new value 6equated_number equ 3 7; CHECK: :[[# @LINE + 1]]:21: error: invalid variable redefinition 8equated_number equ 4 9 10; CHECK: :[[# @LINE + 1]]:1: error: cannot redefine a built-in symbol 11@Line equ 5 12 13; CHECK: :[[# @LINE + 1]]:1: error: cannot redefine a built-in symbol 14@Version equ 6 15 16.code 17 18end 19