2024-02-16 20:02:50 +00:00
|
|
|
//@ run-pass
|
|
|
|
//@ aux-build:coherence_lib.rs
|
2015-01-01 16:45:59 -05:00
|
|
|
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ pretty-expanded FIXME #23616
|
2015-03-22 13:13:15 -07:00
|
|
|
|
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() { }
|