data/method/busybox/busybox-1.36.0/shell/hush_test/hush-vars/var_nested1.tests

17 lines
147 B
Plaintext
Raw Normal View History

2024-01-29 10:44:43 +08:00
f() { a=A; b=B; }
a=a
b=b
f
echo Expected:AB Actual:$a$b
a=a
b=b
b= f
echo Expected:Ab Actual:$a$b
a=a
b=b
a= b= f
echo Expected:ab Actual:$a$b