mirror of
https://github.com/nushell/nushell
synced 2024-12-26 13:03:07 +00:00
e566a073dc
# Description This PR tries to fix #10184 and #10182.
9 lines
95 B
Text
9 lines
95 B
Text
def main [] {
|
|
somefunc "foo"
|
|
}
|
|
|
|
def somefunc [
|
|
somearg: unknown_type
|
|
] {
|
|
echo $somearg
|
|
}
|