repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Thumb] Reapply r272251 with a fix for PR28348
[llvm-core.git]
/
test
/
TableGen
/
GeneralList.td
blob
17cc9a5cb035866d8cbebab42b945fd7d3850175
1
// RUN: llvm-tblgen %s
2
//
3
// Test to make sure that lists work with any data-type
4
5
class foo {
6
list<int> Test = [1, 2, 3];
7
list<string> Test2 = ["abc", "xyz", "gtq"];
8
}