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
/
GeneralList.td
blob
ca92a213b22888f220b480ec20d9810c339b06b9
1
// RUN: tblgen %s
2
// XFAIL: vg_leak
3
//
4
// Test to make sure that lists work with any data-type
5
6
class foo {
7
list<int> Test = [1, 2, 3];
8
list<string> Test2 = ["abc", "xyz", "gtq"];
9
}