xref: /aosp_15_r20/external/llvm/test/TableGen/if-empty-list-arg.td (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1// RUN: llvm-tblgen %s
2// XFAIL: vg_leak
3
4class C<bit cond> {
5  list<int> X = !if(cond, [1, 2, 3], []);
6  list<int> Y = !if(cond, [], [4, 5, 6]);
7}
8