1
Fork 0
rust/src/test/ui/coherence/impl-foreign-for-locally-defined-fundamental.rs

16 lines
223 B
Rust
Raw Normal View History

#![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;
impl Remote for Local {}
fn main() {}