2019-10-26 17:28:02 +02:00
|
|
|
// revisions: re_a re_b re_c
|
2018-12-29 00:11:13 +01:00
|
|
|
|
2019-10-26 17:28:02 +02:00
|
|
|
#![cfg_attr(any(), re_a, re_b, re_c)]
|
2016-03-01 22:05:54 -05:00
|
|
|
|
2015-03-19 15:39:03 -07:00
|
|
|
// aux-build:coherence_lib.rs
|
2015-01-01 16:45:59 -05:00
|
|
|
|
2015-03-30 17:49:30 -04: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 15:39:03 -07:00
|
|
|
extern crate coherence_lib as lib;
|
2015-01-30 18:46:53 -05:00
|
|
|
use lib::{Remote,Pair};
|
2015-01-01 16:45:59 -05:00
|
|
|
|
2015-01-30 18:46:53 -05:00
|
|
|
pub struct Cover<T>(T);
|
2015-01-01 16:45:59 -05:00
|
|
|
|
2019-10-26 17:28:02 +02:00
|
|
|
#[cfg(any(re_a))]
|
2018-12-29 00:11:13 +01:00
|
|
|
impl<T> Remote for Pair<T,Cover<T>> { }
|
2019-10-26 17:28:02 +02:00
|
|
|
//[re_a]~^ ERROR E0117
|
2016-03-01 22:05:54 -05:00
|
|
|
|
2019-10-26 17:28:02 +02:00
|
|
|
#[cfg(any(re_b))]
|
2018-12-29 00:11:13 +01:00
|
|
|
impl<T> Remote for Pair<Cover<T>,T> { }
|
2019-10-26 17:28:02 +02:00
|
|
|
//[re_b]~^ ERROR E0117
|
2016-03-01 22:05:54 -05:00
|
|
|
|
2019-10-26 17:28:02 +02:00
|
|
|
#[cfg(any(re_c))]
|
2016-03-01 22:05:54 -05:00
|
|
|
impl<T,U> Remote for Pair<Cover<T>,U> { }
|
2019-10-26 17:28:02 +02:00
|
|
|
//[re_c]~^ ERROR E0117
|
2015-01-01 16:45:59 -05:00
|
|
|
|
|
|
|
fn main() { }
|