mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
17 lines
238 B
Rust
17 lines
238 B
Rust
// 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() { }
|