mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-28 19:17:43 +00:00
18 lines
193 B
Rust
18 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() {}
|
||
|
}
|
||
|
}
|