fix invalid unresolved imports errors the asterisk wildcard syntax causes

use a path variabale
This commit is contained in:
Takayuki Maeda 2022-03-04 13:07:39 +09:00
parent 06460fe72c
commit 068a233d4d
5 changed files with 31 additions and 1 deletions

View file

@ -720,7 +720,9 @@ impl<'a, 'b> ImportResolver<'a, 'b> {
note: Vec::new(),
suggestion: None,
};
errors.push((path, err));
if path.contains("::") {
errors.push((path, err))
}
}
}