mirror of
https://github.com/nushell/nushell.git
synced 2024-11-07 17:14:23 +01:00
e566a073dc
# Description This PR tries to fix #10184 and #10182.
10 lines
95 B
Plaintext
10 lines
95 B
Plaintext
def main [] {
|
|
somefunc "foo"
|
|
}
|
|
|
|
def somefunc [
|
|
somearg: unknown_type
|
|
] {
|
|
echo $somearg
|
|
}
|