For PR761:
[oota-llvm.git] / test / Assembler / 2002-05-02-ParseError.ll
1 ; RUN: llvm-as %s -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 i32 *
7
8 define %T @test() {
9         ret %T null
10 }