Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
coherence
/
impl-foreign-for-locally-defined-fundamental.rs
blob: bc1e18b657f3163e4a137ac2283a6af23848c304 [
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
Local
<
T
>(
T
);
impl
Remote
for
Local
<()>
{}
fn
main
()
{}