llvm-project/llvm/test/Assembler/2007-08-06-AliasInvalid.ll

12 lines
184 B
LLVM

; RUN: not llvm-as -disable-output < %s 2>&1 | FileCheck %s
; PR1577
; CHECK: expected top-level entity
@anInt = global i32 1
alias i32 @anAlias
define i32 @main() {
ret i32 0
}