summaryrefslogtreecommitdiff
path: root/test/TableGen/ListManip.td
blob: bece266acbf9d66e83a94290780453f21d362190 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: llvm-tblgen %s
// XFAIL: vg_leak

class Bli<string _t>
{
  string t = _t;
}

class Bla<list<Bli> _bli>
: Bli<!head(_bli).t>
{
}