diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2018-02-26 09:53:46 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-05-03 15:23:09 +0200 |
commit | 57c4e39dcb8eb6013e22cfe82597111c5c6a55af (patch) | |
tree | eaf81473dbda167a187f01a632d39ba2f4908c71 /old-tests/variable/type | |
parent | 4b9de5c80934772dbc5503e65e265da452ca356a (diff) |
Regularize directory target/scope-specific variable assignment syntax
Diffstat (limited to 'old-tests/variable/type')
-rw-r--r-- | old-tests/variable/type/buildfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/old-tests/variable/type/buildfile b/old-tests/variable/type/buildfile index a22cddd..ef56f19 100644 --- a/old-tests/variable/type/buildfile +++ b/old-tests/variable/type/buildfile @@ -54,14 +54,14 @@ v4b =+ [uint64] 01 print $v4b # 2 v5a = 01 -sub/: +sub/ { v5a += [uint64] 01 print $v5a # 2 } v5b = 01 -sub/: +sub/ { v5b =+ [uint64] 01 print $v5b # 2 |