ref: a2d39ddf4e0d6dc324bd0af41d89c942f4f8a49c
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
}