Sign in
swiftshader
/
SwiftShader
/
147c49165d856000625f79c0d397747addb4a2b4
/
.
/
third_party
/
LLVM
/
test
/
TableGen
/
GeneralList.td
blob: 2b8794ceb590f991b0b02d99dbe365f5ed187881 [
file
] [
log
] [
blame
]
// RUN: llvm-tblgen %s
// XFAIL: vg_leak
//
// 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"
];
}