Closed yannbolliger closed 3 years ago
External files with modules of the same crate work. But, the mod xx; use xx::*; and the corresponding use super::*; fail as unsupported trees.
mod xx; use xx::*;
use super::*;
The idea is to allow use but warn if it's from crate-external things.
use
External files with modules of the same crate work. But, the
mod xx; use xx::*;
and the correspondinguse super::*;
fail as unsupported trees.The idea is to allow
use
but warn if it's from crate-external things.