1 // RUN llvm-tblgen %s | FileCheck %s
2
3 // RUN: llvm-tblgen %s | grep "foo" | count 1
4
5 class Base<string t> {
6 string text = t;
7 }
8
9 class Derived<list<list<string>> thetext> : Base<thetext[0][0]>;
10
11 def FOO : Derived<[["foo"]]>;
12
13 // CHECK: text = "foo"
14