rust/tests/ui/resolve/unresolved-segments-visibility.rs
2025-06-05 09:20:19 +02:00

12 lines
310 B
Rust

// Check that we do not ICE due to unresolved segments in visibility path.
#![crate_type = "lib"]
extern crate alloc as b;
mod foo {
mod bar {
pub(in crate::b::string::String::newy) extern crate alloc as e;
//~^ ERROR failed to resolve: `String` is a struct, not a module [E0433]
}
}