Sign in
rust
/
rust
/
a5a286df89146c64afebc6dcbbd3f61ba67ae53b
/
.
/
tests
/
ui
/
traits
/
bound
/
auxiliary
/
crate_a2.rs
blob: d6057db5e63f1644a544d4f8a023ea1270effb90 [
file
]
pub
struct
Foo
;
pub
trait
Bar
{}
impl
Bar
for
Foo
{}
pub
struct
DoesNotImplementTrait
;
pub
struct
ImplementsWrongTraitConditionally
<
T
>
{
_marker
:
std
::
marker
::
PhantomData
<
T
>,
}
impl
Bar
for
ImplementsWrongTraitConditionally
<
isize
>
{}