1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 14:32:51 +01:00
llvm-mirror/test/Regression/TableGen/GeneralList.td
Chris Lattner ea9297063a New testcase
llvm-svn: 7517
2003-08-03 17:47:52 +00:00

9 lines
168 B
TableGen

// RUN: tblgen %s
//
// 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"];
}