Annotated the move Rain testcase with the expected results

This commit is contained in:
Neil Brown 2008-05-30 18:28:19 +00:00
parent a7944ddf9f
commit 46ef8e7e65

View File

@ -8,19 +8,19 @@ process foo (?[int]: in, ![int]: out)
{
in ? xs;
in ? ys;
out ! xs;
out ! ys;
out ! xs; ### Copy
out ! ys; ### Move
ys = [];
seqeach (i : xs)
{
ys = ys ++ [i + 5];
ys = ys ++ [i + 5]; ### Move (ys)
}
out ! xs;
out ! ys;
out ! xs; ### Copy
out ! ys; ### Move
}
out ! xs;
ys = xs;
out ! ys;
out ! xs; ### Copy
ys = xs; ### Move
out ! ys; ### Move
}
process main (?uint8: in, ![uint8]: out, ![uint8]: err)