error[E0425]: cannot find value `inner` in this scope --> $DIR/hygiene.rs:8:17 | 8 | let _ = inner; | ^^^^^ not found in this scope | help: consider importing this function | 2 | use crate::naming_conflicts::inner; | error[E0425]: cannot find value `handle` in this scope --> $DIR/hygiene.rs:9:17 | 9 | let _ = handle; | ^^^^^^ not found in this scope | help: consider importing this function | 2 | use crate::naming_conflicts::handle; | error[E0425]: cannot find value `inner` in this scope --> $DIR/hygiene.rs:6:84 | 6 | #[whaterror_macros::whaterror(|| { assert_eq!(whaterror::CONSTANT, 5); let _ = inner; let _ = handle; })] | ^^^^^ not found in this scope | help: consider importing this function | 2 | use crate::naming_conflicts::inner; | error[E0425]: cannot find value `handle` in this scope --> $DIR/hygiene.rs:6:99 | 6 | #[whaterror_macros::whaterror(|| { assert_eq!(whaterror::CONSTANT, 5); let _ = inner; let _ = handle; })] | ^^^^^^ not found in this scope | help: consider importing this function | 2 | use crate::naming_conflicts::handle; |