rust/tests/rustdoc/auxiliary/source-code-bar.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
193 B
Rust
Raw Normal View History

2021-04-13 15:03:29 -05:00
//! 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() {}
}
}