You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When there is a single import statement that imports multiple idents, and one of them is not found, then the resulting error points to the use site, not the import site.
import http_parser::{http_parser, http_parser_settings, http_parser_execute}; // http_parser_execute is not in the http_parser module
....
http_parser_execute(addr_of(self.parser));
This seems to be fixed, but now the error doesn't specify which imported ident is missing, and there may be duplicates for the same missing symbol. I suppose these should be squashed.
add unchecked_shl test
rust-lang#112238 made me realize that we have a test for add,sub,mul,shr but not shl. Add the missing test. Also name the existing tests more consistently.
When there is a single import statement that imports multiple idents, and one of them is not found, then the resulting error points to the use site, not the import site.
The text was updated successfully, but these errors were encountered: