1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 11:33:24 +02:00
llvm-mirror/test/TableGen/ListManip.td
David Greene e9b2fb7e0d Rename lisp-like functions as suggested by Gabor Greif as loooong time
ago.  This is both easier to learn and easier to read.

llvm-svn: 123001
2011-01-07 17:05:37 +00:00

13 lines
131 B
TableGen

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