Sign in
llvm
/
llvm
/
5ae73c34f7eca6c43e71038b06704a8f7abc7f26
/
.
/
test
/
TableGen
/
GeneralList.td
blob: 17cc9a5cb035866d8cbebab42b945fd7d3850175 [
file
] [
log
] [
blame
]
// RUN: llvm-tblgen %s
//
// Test to make sure that lists work with any data-type
class
foo
{
list
<int>
Test
=
[
1
,
2
,
3
];
list
<string>
Test2
=
[
"abc"
,
"xyz"
,
"gtq"
];
}