22bcbc0c8154bdbbdffc03aba720fe33c9359d9b
[oota-llvm.git] / test / Assembler / 2002-05-02-ParseError.ll
1 ; RUN: llvm-upgrade < %s | llvm-as -o /dev/null -f
2
3 ; This should parse correctly without an 'implementation', but our current YACC
4 ; based parser doesn't have the required 2 token lookahead...
5
6 %T = type int *
7
8 %T %test() {
9         ret %T null
10 }