[OCaml] Expose Llvm_bitwriter.write_bitcode_to_memory_buffer.
[oota-llvm.git] / test / TableGen / ListOfList.td
1 // RUN: llvm-tblgen %s | FileCheck %s
2 // XFAIL: vg_leak
3
4 class Base<string t> {
5   string text = t;
6 }
7
8 class Derived<list<list<string>> thetext> : Base<thetext[0][0]>;
9
10 def FOO : Derived<[["foo"]]>;
11
12 // CHECK: text = "foo"
13 // CHECK-NOT: text = "foo"