Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
coherence
/
auxiliary
/
coherence_inherent_cc_lib.rs
blob: 08d22fbedf5cc5d9110ea4c73fe51e64246cdd7d [
file
] [
log
] [
blame
]
// See coherence_inherent_cc.rs
pub
trait
TheTrait
{
fn
the_fn
(&
self
);
}
pub
struct
TheStruct
;
impl
TheTrait
for
TheStruct
{
fn
the_fn
(&
self
)
{}
}