blob: 17cc9a5cb035866d8cbebab42b945fd7d3850175 [file] [log] [blame]
Peter Collingbourne7f7f2e92011-10-06 13:39:59 +00001// RUN: llvm-tblgen %s
Chris Lattnerdad79da2003-08-03 17:47:52 +00002//
3// Test to make sure that lists work with any data-type
4
5class foo {
6 list<int> Test = [1, 2, 3];
7 list<string> Test2 = ["abc", "xyz", "gtq"];
8}