From 7d8baccc8abde6eb547dca7fa519ddac380c90c8 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Tue, 18 Jul 2017 12:05:16 +0000 Subject: Allow for multiple initialisations on one line --- test.sil | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test.sil') diff --git a/test.sil b/test.sil index ebbfdda..6493308 100644 --- a/test.sil +++ b/test.sil @@ -1,8 +1,8 @@ Int second(Int x, Int y) { - Int z; - z := x; + Int a, b; + a := x; x := y; - y := z; + y := a; return y; } -- cgit v1.2.3