[OCaml] Expose Llvm_bitwriter.write_bitcode_to_memory_buffer.
[oota-llvm.git] / test / TableGen / ForwardRef.td
1 // RUN: llvm-tblgen %s -o -
2 // XFAIL: vg_leak
3
4 class bar {
5   list<bar> x;
6 }
7
8 class foo;
9 class foo;
10
11 class baz { list<foo> y; }
12
13 class foo {
14
15 }
16