2018-08-30 14:18:55 +02:00
|
|
|
// run-pass
|
2015-03-19 15:39:03 -07:00
|
|
|
// aux-build:coherence_lib.rs
|
2015-01-01 16:45:59 -05:00
|
|
|
|
2015-03-22 13:13:15 -07:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2015-03-19 15:39:03 -07:00
|
|
|
extern crate coherence_lib as lib;
|
2015-01-01 16:45:59 -05:00
|
|
|
use lib::Remote1;
|
|
|
|
|
|
|
|
pub struct BigInt;
|
|
|
|
|
2015-01-30 18:46:53 -05:00
|
|
|
impl Remote1<BigInt> for Vec<isize> { }
|
2015-01-01 16:45:59 -05:00
|
|
|
|
|
|
|
fn main() { }
|