ref: 3c9502102b2b01d6b32dad5f4f23f6f1fe736721
dir: /test/genericrec.myr/
/* test that generic types can be recursive, as long as they're not self * including. This just needs to compile and exit with 0. */ type list(@t) = struct val : @t next : list(@t)* ;; const main = { var v : list(int) -> 0 }