diff options
Diffstat (limited to 'testsuite/runnable/return_aggregate.elna')
| -rw-r--r-- | testsuite/runnable/return_aggregate.elna | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/runnable/return_aggregate.elna b/testsuite/runnable/return_aggregate.elna index 820f72f..e162498 100644 --- a/testsuite/runnable/return_aggregate.elna +++ b/testsuite/runnable/return_aggregate.elna @@ -5,8 +5,8 @@ type end proc f(): R -return R(1, 2) +return R{a: 1, b: 2} begin - assert(f() = R(1, 2)) + assert(f() = R{a: 1, b: 2}) end. |
