Open Y-Nak opened 1 year ago
Glob import doesn't work if the imported module contains a private item.
// main.fe use bar::* // bar.fe pub struct PubS {} struct PrivS {}
output
error: struct PrivS is private ┌─ demo/src/main.fe:1:5 │ 1 │ use foo::* │ ^^^ PrivS
Glob import doesn't work if the imported module contains a private item.
Example
output