From 5cc2947143f2a6ebd4ef1ae4d25ab956b87de808 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Tue, 21 Jul 2026 21:27:03 +0200 Subject: Redefine strings as slice of constant characters --- testsuite/runnable/return_aggregate.elna | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'testsuite/runnable/return_aggregate.elna') 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. -- cgit v1.2.3