diff --git a/llvm/test/Regression/TableGen/GeneralList.td b/llvm/test/Regression/TableGen/GeneralList.td new file mode 100644 index 000000000000..7f099f286499 --- /dev/null +++ b/llvm/test/Regression/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"]; +}