Peter Collingbourne | 7f7f2e9 | 2011-10-06 13:39:59 +0000 | [diff] [blame] | 1 | // RUN: llvm-tblgen %s |
Chris Lattner | dad79da | 2003-08-03 17:47:52 +0000 | [diff] [blame] | 2 | // |
3 | // Test to make sure that lists work with any data-type | ||||
4 | |||||
5 | class foo { | ||||
6 | list<int> Test = [1, 2, 3]; | ||||
7 | list<string> Test2 = ["abc", "xyz", "gtq"]; | ||||
8 | } |