summaryrefslogtreecommitdiff
path: root/tests/control_flow/test_computed_goto.zc
diff options
context:
space:
mode:
Diffstat (limited to 'tests/control_flow/test_computed_goto.zc')
-rw-r--r--tests/control_flow/test_computed_goto.zc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/control_flow/test_computed_goto.zc b/tests/control_flow/test_computed_goto.zc
index 12b484c..7144132 100644
--- a/tests/control_flow/test_computed_goto.zc
+++ b/tests/control_flow/test_computed_goto.zc
@@ -1,9 +1,9 @@
test "test_computed_goto" -> int {
- var x = 0;
+ let x = 0;
// Get address of label using && unary operator
- var target = &&label_B;
+ let target = &&label_B;
// Jump to label A first
goto label_A;