aboutsummaryrefslogtreecommitdiff
path: root/testsuite/runnable/return_aggregate.elna
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/runnable/return_aggregate.elna')
-rw-r--r--testsuite/runnable/return_aggregate.elna4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/runnable/return_aggregate.elna b/testsuite/runnable/return_aggregate.elna
index e162498..90c1677 100644
--- a/testsuite/runnable/return_aggregate.elna
+++ b/testsuite/runnable/return_aggregate.elna
@@ -5,8 +5,8 @@ type
end
proc f(): R
-return R{a: 1, b: 2}
+return R{ a: 1, b: 2 }
begin
- assert(f() = R{a: 1, b: 2})
+ assert(f() = R{ a: 1, b: 2 })
end.