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