Sign in
rust
/
rust
/
ac437169eca16cb4e7595ea4612e0e6f9a1fad2b
/
.
/
tests
/
rustdoc
/
source-code-pages
/
auxiliary
/
source-code-bar.rs
blob: 8700d688ef7e25f85ef025bf7d2a99d6d45eec7d [
file
] [
log
] [
blame
]
//! 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
()
{}
}
}