summaryrefslogtreecommitdiff
path: root/test.toc
blob: 56718ab00f91214dd52ce36f965edbb4c226e52c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
io ::= nms{
   #include "std/io.toc";
};

ll ::= fn() Type {
   struct {
   head : int;
   tail : &ll();
   }
};

main ::= fn() {
	l : ll();
};