mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
11 lines
182 B
Text
11 lines
182 B
Text
# The empty pairs of braces here are to test that this does not cause a crash.
|
|
|
|
f() { }
|
|
f
|
|
hash -v f >/dev/null
|
|
f() { { }; }
|
|
f
|
|
hash -v f >/dev/null
|
|
f() { { } }
|
|
f
|
|
hash -v f >/dev/null
|