Home | History | Annotate | Download | only in TableGen
      1 // RUN: llvm-tblgen %s
      2 // XFAIL: vg_leak
      3 //
      4 // Test to make sure that lists work with any data-type
      5 
      6 class foo {
      7   list<int> Test = [1, 2, 3];
      8   list<string> Test2 = ["abc", "xyz", "gtq"];
      9 }
     10