repo.or.cz
/
llvm
/
stm8.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Silence -Wunused-variable in release builds.
[llvm/stm8.git]
/
test
/
TableGen
/
ListArgs.td
blob
a513db6da3cd80624a196edde045b255c14bec23
1
// RUN: tblgen %s
2
// XFAIL: vg_leak
3
4
class B<list<int> v> {
5
list<int> vals = v;
6
}
7
8
class BB<list<list<int>> vals> : B<vals[0]>;
9
class BBB<list<list<int>> vals> : BB<vals>;
10
11
def OneB : BBB<[[1,2,3]]>;
12
def TwoB : BBB<[[1,2,3],[4,5,6]]>;