10 lines
130 B
Rust
10 lines
130 B
Rust
mod inner {
|
|
pub struct PubUnnameable;
|
|
}
|
|
|
|
pub struct Pub<T>(T);
|
|
|
|
impl Pub<inner::PubUnnameable> {
|
|
pub fn pub_method() {}
|
|
}
|