llvm-6502/test/TableGen/GeneralList.td
2014-05-09 08:18:33 +00:00

9 lines
173 B
TableGen

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