diff options
Diffstat (limited to 'src/test/test3.sail')
| -rw-r--r-- | src/test/test3.sail | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/test/test3.sail b/src/test/test3.sail index 8d0d9056..4a216467 100644 --- a/src/test/test3.sail +++ b/src/test/test3.sail @@ -30,11 +30,10 @@ function nat main _ = { MEM(1); MEM_GPU(0) := 3; MEM_GPU(0); - (* extra-parentheses are needed here *) - MEM_SIZE( (0,1) ) := 4; - MEM_SIZE( (0,1) ); + MEM_SIZE(0,1) := 4; + MEM_SIZE(0,1); (* extern calls *) 3 + 39; - add((5, 37)); + add(5, 37); } |
