2015-03-19 17:39:03 -05:00
|
|
|
// aux-build:coherence_lib.rs
|
2018-12-28 17:11:13 -06:00
|
|
|
// revisions: old re
|
|
|
|
|
|
|
|
#![cfg_attr(re, feature(re_rebalance_coherence))]
|
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::{Remote, Pair};
|
|
|
|
|
|
|
|
struct Local<T>(T);
|
|
|
|
|
|
|
|
impl<T,U> Remote for Pair<T,Local<U>> { }
|
2018-12-28 17:11:13 -06:00
|
|
|
//[old]~^ ERROR type parameter `T` must be used as the type parameter for some local type
|
|
|
|
//[re]~^^ ERROR E0117
|
2015-01-01 15:45:59 -06:00
|
|
|
|
|
|
|
fn main() { }
|