aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/vlib/builtin/linux_bare/old/.checks/consts/consts.v
diff options
context:
space:
mode:
Diffstat (limited to 'v_windows/v/vlib/builtin/linux_bare/old/.checks/consts/consts.v')
-rw-r--r--v_windows/v/vlib/builtin/linux_bare/old/.checks/consts/consts.v22
1 files changed, 22 insertions, 0 deletions
diff --git a/v_windows/v/vlib/builtin/linux_bare/old/.checks/consts/consts.v b/v_windows/v/vlib/builtin/linux_bare/old/.checks/consts/consts.v
new file mode 100644
index 0000000..eee2c61
--- /dev/null
+++ b/v_windows/v/vlib/builtin/linux_bare/old/.checks/consts/consts.v
@@ -0,0 +1,22 @@
+module main
+import forkedtest
+
+const (
+ integer1 = 111
+ integer2 = 222
+ integer3 = integer1+integer2
+ integer9 = integer3 * 3
+ abc = "123"
+)
+
+fn check_const_initialization() {
+ assert abc == "123"
+ assert integer9 == 999
+}
+
+fn main(){
+ mut fails := 0
+ fails += forkedtest.normal_run(check_const_initialization, "check_const_initialization")
+ assert fails == 0
+ sys_exit(0)
+}