]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/auxiliary/source-code-bar.rs
Rollup merge of #106707 - ehuss:remove-dupe-sha-1, r=Mark-Simulacrum
[rust.git] / tests / rustdoc / auxiliary / source-code-bar.rs
1 //! just some other file. :)
2
3 use crate::Foo;
4
5 pub struct Bar {
6     field: Foo,
7 }
8
9 pub struct Bar2 {
10     field: crate::Foo,
11 }
12
13 pub mod sub {
14     pub trait Trait {
15         fn tadam() {}
16     }
17 }