2015-03-19 17:39:03 -05:00
|
|
|
// aux-build:coherence_lib.rs
|
2015-01-01 15:45:59 -06:00
|
|
|
|
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;
|
|
|
|
|
|
|
|
impl<T> Remote1<BigInt> for T { }
|
2015-02-16 13:40:38 -06:00
|
|
|
//~^ ERROR type parameter `T` must be used as the type parameter for some local type
|
2015-01-01 15:45:59 -06:00
|
|
|
|
|
|
|
fn main() { }
|