mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
c2788a88ca
`fn resolve_legacy_scope` can now resolve only to `macro_rules!` items, `fn resolve_lexical_macro_path_segment` is for everything else - modularized macros, preludes
10 lines
299 B
Plaintext
10 lines
299 B
Plaintext
error[E0432]: unresolved import `std::assert`
|
|
--> $DIR/issue-53512.rs:13:5
|
|
|
|
|
LL | use std::assert; //~ ERROR unresolved import `std::assert`
|
|
| ^^^^^^^^^^^ no `assert` in the root
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0432`.
|