14 lines · plain
1// RUN: llvm-tblgen %s | FileCheck %s2// XFAIL: vg_leak3 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