summaryrefslogtreecommitdiff
path: root/tnslc/enum.tnsl
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2023-07-07 15:50:30 -0400
committerKyle Gunger <kgunger12@gmail.com>2023-07-07 15:50:30 -0400
commitceaeb8df4d9bf9b518239ea623d813add5a71072 (patch)
tree7061a06dc67b2832248a36d842b051a408a5a5cd /tnslc/enum.tnsl
parent34066553843ee869d71f24646eea1bac319225d6 (diff)
Returns inside of complex operations
Diffstat (limited to 'tnslc/enum.tnsl')
-rw-r--r--tnslc/enum.tnsl4
1 files changed, 2 insertions, 2 deletions
diff --git a/tnslc/enum.tnsl b/tnslc/enum.tnsl
index e8e9c03..5dd241b 100644
--- a/tnslc/enum.tnsl
+++ b/tnslc/enum.tnsl
@@ -1,11 +1,11 @@
# to get working
enum TEST_ENUM [int] {
- i = 0
+ i = 1
}
/; module m
- int i = 0
+ int i = 1
;/
/; main [int]