summaryrefslogtreecommitdiff
path: root/test/TableGen/GeneralList.td
blob: ca92a213b22888f220b480ec20d9810c339b06b9 (plain)
1
2
3
4
5
6
7
8
9
// RUN: 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"];
}