Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
coherence
/
impl[t]-foreign[foreign[t]_local]-for-foreign.rs
blob: 99f3ce4476043d4932e4fed4c36496459196d0bb [
file
] [
log
] [
blame
]
// check-pass
// compile-flags:--crate-name=test
// aux-build:coherence_lib.rs
extern
crate coherence_lib
as
lib
;
use
lib
::*;
use
std
::
rc
::
Rc
;
struct
Local
;
impl
<
T
>
Remote2
<
Rc
<
T
>,
Local
>
for
usize
{
}
fn
main
()
{}