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