1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/test/TableGen/GeneralList.td

9 lines
173 B
TableGen
Raw Normal View History

// RUN: llvm-tblgen %s
2003-08-03 19:47:52 +02:00
//
// 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"];
}