fix invalid unresolved imports
errors the asterisk wildcard syntax causes
use a path variabale
This commit is contained in:
parent
06460fe72c
commit
068a233d4d
5 changed files with 31 additions and 1 deletions
|
@ -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))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue