mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
990c7c241f
llvm-svn: 208393
9 lines
173 B
TableGen
9 lines
173 B
TableGen
// RUN: llvm-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"];
|
|
}
|