mirror of
https://github.com/nushell/nushell.git
synced 2025-04-03 06:01:11 +02:00
# Description Fixes: #11143 # User-Facing Changes Take the following as example: ```nushell module foo { export def bar [] {}; export def baz [] {} } ``` `use foo bar baz` will be error: ``` ❯ use foo c d Error: nu::parser::wrong_import_pattern × Wrong import pattern structure. ╭─[entry #2:1:1] 1 │ use foo c d · ┬ · ╰── Trying to import something but the parent `c` is not a module, maybe you want to try `use <module> [<name1>, <name2>]` ╰──── ``` # Tests + Formatting Done |
||
---|---|---|
.. | ||
block.rs | ||
call.rs | ||
cell_path.rs | ||
expr.rs | ||
expression.rs | ||
import_pattern.rs | ||
match_pattern.rs | ||
mod.rs | ||
operator.rs | ||
pipeline.rs |