Files
llvm-6502/test/TableGen/ForwardRef.td
Chris Lattner 46dab2cb0a Add a test that you can forward ref a class.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23547 91177308-0d34-0410-b5e6-96231b3b80d8
2005-09-30 04:52:43 +00:00

16 lines
121 B
TableGen

// RUN: tblgen %s -o -
class bar {
list<bar> x;
}
class foo;
class foo;
class baz { list<foo> y; }
class foo {
}