2015-01-01 15:45:59 -06:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2016-03-01 21:05:54 -06:00
|
|
|
// revisions: a b c
|
|
|
|
|
2015-03-19 17:39:03 -05:00
|
|
|
// aux-build:coherence_lib.rs
|
2015-01-01 15:45:59 -06:00
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
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
|
|
|
|
2016-03-01 21:05:54 -06:00
|
|
|
#[cfg(a)]
|
|
|
|
impl<T> Remote for Pair<T,Cover<T>> { } //[a]~ ERROR E0210
|
|
|
|
|
|
|
|
#[cfg(b)]
|
|
|
|
impl<T> Remote for Pair<Cover<T>,T> { } //[b]~ ERROR E0210
|
|
|
|
|
|
|
|
#[cfg(c)]
|
|
|
|
impl<T,U> Remote for Pair<Cover<T>,U> { }
|
|
|
|
//[c]~^ 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() { }
|