Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
coherence
/
impl-foreign-for-locally-defined-fundamental[foreign].rs
blob: a3286777c4ee293db8c0304db8ac68aa76b65b44 [
file
] [
log
] [
blame
]
#![
feature
(
fundamental
)]
//@ compile-flags:--crate-name=test
//@ aux-build:coherence_lib.rs
//@ check-pass
extern
crate coherence_lib
as
lib
;
use
lib
::*;
#[
fundamental
]
struct
MyBox
<
T
>(
T
);
impl
<
T
>
Remote
for
MyBox
<
T
>
{}
fn
main
()
{}