blob: 108d14881af1db21a2095fbb609df037a97590e3 [file] [log] [blame]
Tanya Lattner32f81a52004-11-06 22:07:09 +00001; RUN: llvm-as < %s -o /dev/null -f
2
Chris Lattner81e92fe2003-03-06 19:59:08 +00003; This should parse correctly without an 'implementation', but our current YACC
4; based parser doesn't have the required 2 token lookahead...
Tanya Lattner1d28bda2004-11-06 20:38:27 +00005; XFAIL: *
Chris Lattnered1228a2002-05-02 19:54:58 +00006
Chris Lattner3f6b8332002-05-02 19:58:05 +00007 %T = type int *
Chris Lattnered1228a2002-05-02 19:54:58 +00008
Chris Lattner81e92fe2003-03-06 19:59:08 +00009%T %test() {
Chris Lattner3f6b8332002-05-02 19:58:05 +000010 ret %T null
Chris Lattner81e92fe2003-03-06 19:59:08 +000011}