repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
revert a hunk of r82018 that wasn't supposed to go in yet.
[llvm/avr.git]
/
test
/
TableGen
/
ListArgs.td
blob
daa0de66bed5581b1523208404f98bbc923e837d
1
// RUN: tblgen %s
2
3
class B<list<int> v> {
4
list<int> vals = v;
5
}
6
7
class BB<list<list<int>> vals> : B<vals[0]>;
8
class BBB<list<list<int>> vals> : BB<vals>;
9
10
def OneB : BBB<[[1,2,3]]>;
11
def TwoB : BBB<[[1,2,3],[4,5,6]]>;