xref: /aosp_15_r20/external/llvm/test/TableGen/GeneralList.td (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1// RUN: llvm-tblgen %s
2//
3// Test to make sure that lists work with any data-type
4
5class foo {
6  list<int> Test = [1, 2, 3];
7  list<string> Test2 = ["abc", "xyz", "gtq"];
8}
9