Home | History | Annotate | Download | only in Assembler
      1 ; RUN: not llvm-as < %s > /dev/null 2> %t
      2 ; RUN: grep "expected top-level entity" %t
      3 ; PR1577
      4 
      5 @anInt = global i32 1 
      6 alias i32 @anAlias
      7 
      8 define i32 @main() {
      9    ret i32 0 
     10 }
     11