rust/tests/ui/coherence/coherence-all-remote.rs

10 lines
150 B
Rust
Raw Normal View History

// aux-build:coherence_lib.rs
extern crate coherence_lib as lib;
2015-01-05 15:56:07 -05:00
use lib::Remote1;
impl<T> Remote1<T> for isize { }
//~^ ERROR E0210
fn main() { }