[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / TableGen / ListOfList.td
blob56f964e8685c011eebe8095196b88c12e05d8687
1 // RUN: llvm-tblgen %s | FileCheck %s
2 // XFAIL: vg_leak
4 class Base<string t> {
5   string text = t;
8 class Derived<list<list<string>> thetext> : Base<thetext[0][0]>;
10 def FOO : Derived<[["foo"]]>;
12 // CHECK: text = "foo"
13 // CHECK-NOT: text = "foo"