From: David Greene Date: Fri, 30 Sep 2011 20:59:51 +0000 (+0000) Subject: Test VarListElementInit:: resolveListElementReference X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f6c8cbba4eae431ea52964205c80a57db498f268;p=oota-llvm.git Test VarListElementInit:: resolveListElementReference Add a TableGen test to check if indexing lists of lists works. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140883 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/TableGen/ListOfList.td b/test/TableGen/ListOfList.td new file mode 100644 index 00000000000..6fe0e89ed89 --- /dev/null +++ b/test/TableGen/ListOfList.td @@ -0,0 +1,13 @@ +// RUN tblgen %s | FileCheck %s + +// RUN: tblgen %s | grep {foo} | count 1 + +class Base { + string text = t; +} + +class Derived> thetext> : Base; + +def FOO : Derived<[["foo"]]>; + +// CHECK: text = "foo"