diff --git a/test/TableGen/GeneralList.td b/test/TableGen/GeneralList.td new file mode 100644 index 00000000000..7f099f28649 --- /dev/null +++ b/test/TableGen/GeneralList.td @@ -0,0 +1,8 @@ +// RUN: tblgen %s +// +// Test to make sure that lists work with any data-type + +class foo { + list Test = [1, 2, 3]; + list Test2 = ["abc", "xyz", "gtq"]; +}