llvm-project/llvm/test/TableGen/GeneralList.td

9 lines
173 B
TableGen
Raw Normal View History

// RUN: llvm-tblgen %s
2003-08-04 01:47:52 +08:00
//
// 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"];
}