ref: 3d20a6d5e0c554e9f3d0d3f504f4dfb28901ebb7
dir: /test/genericrec.myr/
use std
/* 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
}