blob: 17cc43b40a7f8905e557d1b612332dd99c3db738 [file] [log] [blame]
Peter Collingbourne7f7f2e92011-10-06 13:39:59 +00001// RUN llvm-tblgen %s | FileCheck %s
David Greene0c3a2b42011-09-30 20:59:51 +00002
Peter Collingbourne7f7f2e92011-10-06 13:39:59 +00003// RUN: llvm-tblgen %s | grep {foo} | count 1
David Greene0c3a2b42011-09-30 20:59:51 +00004
5class Base<string t> {
6 string text = t;
7}
8
9class Derived<list<list<string>> thetext> : Base<thetext[0][0]>;
10
11def FOO : Derived<[["foo"]]>;
12
13// CHECK: text = "foo"