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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
150 B
Rust
Raw Normal View History

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