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
Attempting to import a module using mod with no body and supplying the same name as the current module (ie. a recursive mod) is not detected at compile time, and results in the compiler spinning its wheels.
Simple example:
// foo.rs
mod foo;
fn main() { .. }
The text was updated successfully, but these errors were encountered:
…giraffate
Update docs for `expl_impl_clone_on_copy`
The known issue was fixed in rust-lang#6993. I missed updating the docs then, so it's happening now.
changelog: None
Attempting to import a module using
mod
with no body and supplying the same name as the current module (ie. a recursivemod
) is not detected at compile time, and results in the compiler spinning its wheels.Simple example:
The text was updated successfully, but these errors were encountered: