blob: adf9fe483eb48d80f9012b5635200b48267c20b4 [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
Chandler Carrutha5a29f92012-07-02 12:47:22 +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"