[PM] Wire up support for printing assembly output from the opt command.
[oota-llvm.git] / test / TableGen / GeneralList.td
1 // RUN: llvm-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 }