Rust
Circular modules
Error
New
Last modified: 03 December 2024 Reports circular module declarations with the #path
attribute. Such declarations produce an infinite module graph and cannot be compiled.
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
RsCircularMods
A common example of this error is a file module that declares a child mod
referencing the current file:
// File: recursive_mod.rs
#[path = "recursive_mod.rs"]
mod child_mod;
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Rust, 243.22831 |
Thanks for your feedback!
Was this page helpful?