Sign in
fuchsia
/
third_party
/
rust
/
35785ef39fa01250f6c4db6bb08e239f55c308ee
/
.
/
tests
/
run-make
/
crate-loading
/
multiple-dep-versions-1.rs
blob: 2d35163382916ad6f6910834a749dd2eb218c188 [
file
] [
log
] [
blame
]
#![
crate_name
=
"dependency"
]
#![
crate_type
=
"rlib"
]
pub
struct
Type
;
pub
trait
Trait
{}
impl
Trait
for
Type
{}
pub
fn
do_something
<
X
:
Trait
>(
_
:
X
)
{}