brintos

brintos / llvm-project-archived public Read only

0
0
Text · 173 B · 17cc9a5 Raw
9 lines · plain
1// RUN: llvm-tblgen %s2//3// Test to make sure that lists work with any data-type4 5class foo {6  list<int> Test = [1, 2, 3];7  list<string> Test2 = ["abc", "xyz", "gtq"];8}9