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