Add a way to look up a type by it's name in a module.
[oota-llvm.git] / test / TableGen / ForwardRef.td
1 // RUN: tblgen %s -o -
2
3 class bar {
4   list<bar> x;
5 }
6
7 class foo;
8 class foo;
9
10 class baz { list<foo> y; }
11
12 class foo {
13
14 }
15