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
/
ListArgsSimple.td
blob
b8ec6e024178ad47448a5a6be9e03d3f85654fb5
1
// RUN: llvm-tblgen %s
2
// XFAIL: vg_leak
3
4
class B<int v> {
5
int val = v;
6
}
7
8
class BB<list<int> vals> : B<vals[0]>;
9
class BBB<list<int> vals> : BB<vals>;