aboutsummaryrefslogtreecommitdiff
path: root/tests/variable/override/cache
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-04-06 07:46:43 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-04-06 07:46:43 +0200
commita9663e16d5765a42175ce6131b8cae5ecc622b17 (patch)
tree453decd61ca8fdff3bdcc3d73e6fdd989204232a /tests/variable/override/cache
parentf079a626a03d4a6e7be1031ddb2e971c8b9a9a75 (diff)
Test and fix override logic
Diffstat (limited to 'tests/variable/override/cache')
-rw-r--r--tests/variable/override/cache13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/variable/override/cache b/tests/variable/override/cache
new file mode 100644
index 0000000..8378688
--- /dev/null
+++ b/tests/variable/override/cache
@@ -0,0 +1,13 @@
+x = [string] 0
+print $x
+
+x = [uint64] 1
+print $x
+
+y = 0
+print $y
+
+[uint64] y = [null]
+print $y
+
+./: