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
This commit is contained in:
David Greene 2011-09-30 20:59:51 +00:00
parent 1045a594e6
commit f6c8cbba4e

View File

@ -0,0 +1,13 @@
// 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"