2019-09-18 15:14:33 -05:00
|
|
|
// 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 Remote1<u32> for f64 {
|
2019-09-18 15:36:04 -05:00
|
|
|
//~^ ERROR only traits defined in the current crate
|
|
|
|
// | can be implemented for arbitrary types [E0117]
|
2019-09-18 15:14:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|