Added LLVM Asm/Bitcode Reader/Writer support for new IR keyword externally_initialized.
[oota-llvm.git] / test / Assembler / 2007-08-06-AliasInvalid.ll
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 }