rust/tests/rustdoc-html/source-code-pages/auxiliary/source-code-bar.rs
2026-01-07 14:23:30 +01:00

17 lines
193 B
Rust

//! just some other file. :)
use crate::Foo;
pub struct Bar {
field: Foo,
}
pub struct Bar2 {
field: crate::Foo,
}
pub mod sub {
pub trait Trait {
fn tadam() {}
}
}