update to new tag syntax

This commit is contained in:
Niko Matsakis 2012-01-20 14:17:40 -08:00
parent 42b97f317a
commit ec8273587c
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ type pair<A,B> = {
a: A, b: B
};
tag rec<A> = _rec<A>;
enum rec<A> = _rec<A>;
type _rec<A> = {
val: A,
mutable rec: option<@rec<A>>