2021-04-11 23:44:54 +01:00
|
|
|
#![crate_type = "lib"]
|
|
|
|
|
|
|
|
|
|
pub mod public {
|
2025-06-05 08:41:49 +02:00
|
|
|
use crate::private_import;
|
2021-04-11 23:44:54 +01:00
|
|
|
|
|
|
|
|
// should not be suggested since it is private
|
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
|
|
mod private_module {
|
|
|
|
|
// should not be suggested since it is private
|
|
|
|
|
pub struct Foo;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mod private_import {
|
|
|
|
|
// should not be suggested since it is private
|
|
|
|
|
pub struct Foo;
|
|
|
|
|
}
|