Test case

- Updated test case `simple_literals.t` to to perform a standalone variable assignment
This commit is contained in:
Tristan B. Velloza Kildaire 2023-02-03 16:29:50 +02:00
parent b7b0bb452a
commit 4ed6b2a18b
1 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
module simple_literals;
ubyte var = 1;
ubyte var = 1;
void test()
{
var = 2;
}