repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git]
/
llvm
/
test
/
TableGen
/
ListOfList.td
blob
56f964e8685c011eebe8095196b88c12e05d8687
1
// RUN: llvm-tblgen %s | FileCheck %s
2
// XFAIL: vg_leak
3
4
class Base<string t> {
5
string text = t;
6
}
7
8
class Derived<list<list<string>> thetext> : Base<thetext[0][0]>;
9
10
def FOO : Derived<[["foo"]]>;
11
12
// CHECK: text = "foo"
13
// CHECK-NOT: text = "foo"