xref: /aosp_15_r20/external/llvm/test/TableGen/ListManip.td (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1// RUN: llvm-tblgen %s
2// XFAIL: vg_leak
3
4class Bli<string _t>
5{
6  string t = _t;
7}
8
9class Bla<list<Bli> _bli>
10: Bli<!head(_bli).t>
11{
12}
13