llvm-for-llvmta/test/TableGen/ListManip.td
Nils Hölscher 3500bf8dde first commit
2022-04-25 10:02:23 +02:00

13 lines
136 B
TableGen

// RUN: llvm-tblgen %s
// XFAIL: vg_leak
class Bli<string _t>
{
string t = _t;
}
class Bla<list<Bli> _bli>
: Bli<!head(_bli).t>
{
}