-
Notifications
You must be signed in to change notification settings - Fork 227
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix ambiguity of glob import with
matches!
now in the standard library
``` error[E0659]: `matches` is ambiguous (glob import vs any other name from outer scope during import/macro resolution) --> html5ever/src/tree_builder/tag_sets.rs:109:5 | 109 | matches!( | ^^^^^^^ ambiguous name | = note: `matches` could refer to a macro from prelude note: `matches` could also refer to the macro imported here --> html5ever/src/tree_builder/tag_sets.rs:13:5 | 13 | use mac::*; | ^^^^^^ = help: consider adding an explicit import of `matches` to disambiguate = help: or use `self::matches` to refer to this macro unambiguously error: aborting due to 2 previous errors ```
- Loading branch information
1 parent
fbe0779
commit 2e2f860
Showing
6 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters