[Thumb] Reapply r272251 with a fix for PR28348
[llvm-core.git] / test / TableGen / GeneralList.td
blob17cc9a5cb035866d8cbebab42b945fd7d3850175
1 // RUN: llvm-tblgen %s
2 //
3 // Test to make sure that lists work with any data-type
5 class foo {
6   list<int> Test = [1, 2, 3];
7   list<string> Test2 = ["abc", "xyz", "gtq"];