mirror of
https://git.busybox.net/busybox
synced 2025-05-10 04:33:59 +02:00
16 lines
147 B
Text
Executable file
16 lines
147 B
Text
Executable file
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
|