blob: 108d14881af1db21a2095fbb609df037a97590e3 [file] [log] [blame]
Tanya Lattnere7e3f2e2004-11-06 22:07:09 +00001; RUN: llvm-as < %s -o /dev/null -f
2
Chris Lattner42289a32003-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 Lattner12ff9682004-11-06 20:38:27 +00005; XFAIL: *
Chris Lattnere23a7e92002-05-02 19:54:58 +00006
Chris Lattner17c48f72002-05-02 19:58:05 +00007 %T = type int *
Chris Lattnere23a7e92002-05-02 19:54:58 +00008
Chris Lattner42289a32003-03-06 19:59:08 +00009%T %test() {
Chris Lattner17c48f72002-05-02 19:58:05 +000010 ret %T null
Chris Lattner42289a32003-03-06 19:59:08 +000011}