nushell/tests/fixtures/eval/script.nu
nibon7 e566a073dc
Exit early when encountering parsing errors (#10213)
# Description
This PR tries to fix #10184 and #10182.
2023-09-05 14:36:37 +02:00

10 lines
95 B
Plaintext

def main [] {
somefunc "foo"
}
def somefunc [
somearg: unknown_type
] {
echo $somearg
}