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