From 4ed6b2a18bfad52ced792505e8981b3a190d5310 Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Fri, 3 Feb 2023 16:29:50 +0200 Subject: [PATCH] Test case - Updated test case `simple_literals.t` to to perform a standalone variable assignment --- source/tlang/testing/simple_literals.t | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/source/tlang/testing/simple_literals.t b/source/tlang/testing/simple_literals.t index 1a0f4f86..7aeaf562 100644 --- a/source/tlang/testing/simple_literals.t +++ b/source/tlang/testing/simple_literals.t @@ -1,3 +1,8 @@ module simple_literals; -ubyte var = 1; \ No newline at end of file +ubyte var = 1; + +void test() +{ + var = 2; +} \ No newline at end of file