1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00
llvm-mirror/test/TableGen/ListManip.td
2011-10-06 13:39:59 +00: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>
{
}