1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2024-12-15 04:30:12 +00:00
llvm-6502/test/TableGen/ForwardRef.td
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 {
}