blob: db10b8e654f5bb8fa473345a985de1caeec1c818 [file] [log] [blame] [edit]
//@ run-pass
#![allow(unused_imports)]
//@ aux-build:coherence_lib.rs
//@ pretty-expanded FIXME #23616
extern crate coherence_lib as lib;
use lib::Remote1;
pub trait Local {
fn foo(&self) { }
}
impl<T> Local for T { }
fn main() { }