# error[E0432]: unresolved import `crate::module::Item` -- could not find `Item` in `module`

- **ID:** `rust/e0432-import-conflict`
- **Domain:** rust
- **Category:** module_error
- **Error Code:** `E0432`
- **Verification:** ai_generated
- **Fix Rate:** 90%

## Root Cause

Trying to import an item (struct, function, etc.) from a module where it doesn't exist, often due to a typo, missing module declaration, or incorrect path.

## Version Compatibility

| Version | Status | Introduced | Deprecated |
|---------|--------|------------|------------|
| 1.65.0 | active | — | — |
| 1.72.0 | active | — | — |
| 1.80.0 | active | — | — |

## Workarounds

1. **Verify the item name and module path. Check if the module is declared in 'mod.rs' or 'lib.rs'. Example: if module is 'src/utils.rs', use 'use crate::utils::Item;'.** (95% success)
   ```
   Verify the item name and module path. Check if the module is declared in 'mod.rs' or 'lib.rs'. Example: if module is 'src/utils.rs', use 'use crate::utils::Item;'.
   ```
2. **If the item is re-exported, ensure the re-export is public: 'pub use other_module::Item;' in the module file.** (90% success)
   ```
   If the item is re-exported, ensure the re-export is public: 'pub use other_module::Item;' in the module file.
   ```

## Dead Ends

- **** — Adding a 'mod' declaration in the wrong file — this creates a new module instead of importing from an existing one. (70% fail)
- **** — Using 'use super::module::Item' when the module is in a sibling file — this may reference the wrong scope. (60% fail)
