Fixed some bugs.
[llvm/zpu.git] / test / TableGen / lisp.td
blobb521e04c89132416bfa878e188972f8b2669eba9
1 // RUN: tblgen %s | grep {}
2 // XFAIL: vg_leak
4 class List<list<string> n> {
5   list<string> names = n;
8 class CAR<string e> {
9   string element = e;
12 class CDR<list<string> r, int n> {
13   list<string> rest = r;
14   int null = n;
17 class NameList<list<string> Names> :
18   List<Names>, CAR<!car(Names)>, CDR<!cdr(Names), !null(!cdr(Names))>;
20 def Three : NameList<["Tom", "Dick", "Harry"]>;
22 def One : NameList<["Jeffrey Sinclair"]>;