ref: 199e8c38edcfd24d13a5209dced69cf0c9b496d0
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)
}