2019-10-26 10:28:02 -05:00
|
|
|
// revisions: re_a re_b re_c
|
2018-12-28 17:11:13 -06:00
|
|
|
|
2019-10-26 10:28:02 -05:00
|
|
|
#![cfg_attr(any(), re_a, re_b, re_c)]
|
2016-03-01 21:05:54 -06:00
|
|
|
|
2015-03-19 17:39:03 -05:00
|
|
|
// aux-build:coherence_lib.rs
|
2015-01-01 15:45:59 -06:00
|
|
|
|
2015-03-30 16:49:30 -05:00
|
|
|
// Test that the `Pair` type reports an error if it contains type
|
|
|
|
// parameters, even when they are covered by local types. This test
|
|
|
|
// was originally intended to test the opposite, but the rules changed
|
|
|
|
// with RFC 1023 and this became illegal.
|
|
|
|
|
2015-03-19 17:39:03 -05:00
|
|
|
extern crate coherence_lib as lib;
|
2015-01-30 17:46:53 -06:00
|
|
|
use lib::{Remote,Pair};
|
2015-01-01 15:45:59 -06:00
|
|
|
|
2015-01-30 17:46:53 -06:00
|
|
|
pub struct Cover<T>(T);
|
2015-01-01 15:45:59 -06:00
|
|
|
|
2019-10-26 10:28:02 -05:00
|
|
|
#[cfg(any(re_a))]
|
2018-12-28 17:11:13 -06:00
|
|
|
impl<T> Remote for Pair<T,Cover<T>> { }
|
2019-10-26 10:28:02 -05:00
|
|
|
//[re_a]~^ ERROR E0117
|
2016-03-01 21:05:54 -06:00
|
|
|
|
2019-10-26 10:28:02 -05:00
|
|
|
#[cfg(any(re_b))]
|
2018-12-28 17:11:13 -06:00
|
|
|
impl<T> Remote for Pair<Cover<T>,T> { }
|
2019-10-26 10:28:02 -05:00
|
|
|
//[re_b]~^ ERROR E0117
|
2016-03-01 21:05:54 -06:00
|
|
|
|
2019-10-26 10:28:02 -05:00
|
|
|
#[cfg(any(re_c))]
|
2016-03-01 21:05:54 -06:00
|
|
|
impl<T,U> Remote for Pair<Cover<T>,U> { }
|
2019-10-26 10:28:02 -05:00
|
|
|
//[re_c]~^ ERROR E0117
|
2015-01-01 15:45:59 -06:00
|
|
|
|
|
|
|
fn main() { }
|