blob: 3e5fceacabf6eea6fb7761ec84e073389ef66234 [file] [log] [blame]
//@ aux-build:coherence_lib.rs
extern crate coherence_lib as lib;
use lib::{Remote, Pair};
struct Local<T>(T);
impl<T,U> Remote for Pair<T,Local<U>> { }
//~^ ERROR E0117
fn main() { }