2013-10-29 05:08:34 -05:00
|
|
|
// Copyright 2012 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.
|
|
|
|
|
|
|
|
// Test that we correctly infer variance for region parameters in
|
2014-08-01 18:42:13 -05:00
|
|
|
// case that involve multiple intricate types.
|
2013-10-29 05:08:34 -05:00
|
|
|
// Try enums too.
|
|
|
|
|
2015-02-16 14:21:41 -06:00
|
|
|
#![feature(rustc_attrs)]
|
|
|
|
|
2013-10-29 05:08:34 -05:00
|
|
|
#[rustc_variance]
|
2014-12-29 15:32:12 -06:00
|
|
|
enum Base<'a, 'b, 'c:'b, 'd> { //~ ERROR regions=[[+, -, o, *];[];[]]
|
2015-02-12 09:29:52 -06:00
|
|
|
//~^ ERROR parameter `'d` is never used
|
2015-01-08 04:54:35 -06:00
|
|
|
Test8A(extern "Rust" fn(&'a isize)),
|
|
|
|
Test8B(&'b [isize]),
|
2013-10-29 05:08:34 -05:00
|
|
|
Test8C(&'b mut &'c str),
|
|
|
|
}
|
|
|
|
|
|
|
|
#[rustc_variance]
|
2014-12-29 15:32:12 -06:00
|
|
|
struct Derived1<'w, 'x:'y, 'y, 'z> { //~ ERROR regions=[[*, o, -, +];[];[]]
|
2015-02-12 09:29:52 -06:00
|
|
|
//~^ ERROR parameter `'w` is never used
|
2013-10-29 05:08:34 -05:00
|
|
|
f: Base<'z, 'y, 'x, 'w>
|
|
|
|
}
|
|
|
|
|
|
|
|
#[rustc_variance] // Combine - and + to yield o
|
2014-12-29 15:32:12 -06:00
|
|
|
struct Derived2<'a, 'b:'a, 'c> { //~ ERROR regions=[[o, o, *];[];[]]
|
2015-02-12 09:29:52 -06:00
|
|
|
//~^ ERROR parameter `'c` is never used
|
2013-10-29 05:08:34 -05:00
|
|
|
f: Base<'a, 'a, 'b, 'c>
|
|
|
|
}
|
|
|
|
|
|
|
|
#[rustc_variance] // Combine + and o to yield o (just pay attention to 'a here)
|
2014-12-29 15:32:12 -06:00
|
|
|
struct Derived3<'a:'b, 'b, 'c> { //~ ERROR regions=[[o, -, *];[];[]]
|
2015-02-12 09:29:52 -06:00
|
|
|
//~^ ERROR parameter `'c` is never used
|
2013-10-29 05:08:34 -05:00
|
|
|
f: Base<'a, 'b, 'a, 'c>
|
|
|
|
}
|
|
|
|
|
|
|
|
#[rustc_variance] // Combine + and * to yield + (just pay attention to 'a here)
|
2014-12-29 15:32:12 -06:00
|
|
|
struct Derived4<'a, 'b, 'c:'b> { //~ ERROR regions=[[+, -, o];[];[]]
|
2013-10-29 05:08:34 -05:00
|
|
|
f: Base<'a, 'b, 'c, 'a>
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|