Skip to content

Commit

Permalink
add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
artoy committed Mar 21, 2024
1 parent 130d1ec commit 088f7ee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/test/list/reverse2.imp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ mklist(n) {
_reverse(l, l_next) {
match l_next with
Nil -> {
// FIXME: this alias statement is (maybe) wrong
// alias(*(l.Cons.2) = l_next);
return l
}
Expand Down Expand Up @@ -51,4 +52,4 @@ len(l) {
let len_l = len(l) in
let rev_l = reverse(l) in
assert(len_l = len(rev_l))
}
}

0 comments on commit 088f7ee

Please sign in to comment.