llvm-6502/test/TableGen/GeneralList.td
2011-10-06 13:39:59 +00:00

10 lines
191 B
TableGen

// 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"];
}