bolt/deps/llvm-18.1.8/llvm/test/TableGen/ListManip.td

13 lines
136 B
TableGen
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: llvm-tblgen %s
// XFAIL: vg_leak
class Bli<string _t>
{
string t = _t;
}
class Bla<list<Bli> _bli>
: Bli<!head(_bli).t>
{
}