GeneralList.td 173 B

12345678
  1. // RUN: llvm-tblgen %s
  2. //
  3. // Test to make sure that lists work with any data-type
  4. class foo {
  5. list<int> Test = [1, 2, 3];
  6. list<string> Test2 = ["abc", "xyz", "gtq"];
  7. }