aboutsummaryrefslogtreecommitdiff
path: root/tests/variable/override
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-04-18 10:17:37 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-04-18 10:17:37 +0200
commitae20570f2ad55b2fa8e71cf450457cb9c4b21b1b (patch)
tree4db6740878ffb28fb00c5fc323a1891300db749e /tests/variable/override
parente2501db05c9e9f139d22f3748584992679954721 (diff)
Add support for using value attributes in eval context
For example: if ($x == [null]) Or: if ([uint64] 01 == [uint64] 1)
Diffstat (limited to 'tests/variable/override')
-rw-r--r--tests/variable/override/buildfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/variable/override/buildfile b/tests/variable/override/buildfile
index 18c9831..c090e81 100644
--- a/tests/variable/override/buildfile
+++ b/tests/variable/override/buildfile
@@ -1,4 +1,4 @@
-if ("$t" != "")
+if ($t != [null])
{
[$t] v = [null]
}