blob: 6fe0e89ed89fcda7339406db70de9d3da2ce9e26 [file] [log] [blame]
// RUN tblgen %s | FileCheck %s
// RUN: tblgen %s | grep {foo} | count 1
class Base<string t> {
string text = t;
}
class Derived<list<list<string>> thetext> : Base<thetext[0][0]>;
def FOO : Derived<[["foo"]]>;
// CHECK: text = "foo"