]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/regions-variance-contravariant-use-covariant.rs
Update compile fail tests to use isize.
[rust.git] / src / test / compile-fail / regions-variance-contravariant-use-covariant.rs
1 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Test that a type which is covariant with respect to its region
12 // parameter yields an error when used in a contravariant way.
13 //
14 // Note: see variance-regions-*.rs for the tests that check that the
15 // variance inference works in the first place.
16
17 // This is contravariant with respect to 'a, meaning that
18 // Contravariant<'long> <: Contravariant<'short> iff
19 // 'short <= 'long
20 struct Contravariant<'a> {
21     f: &'a isize
22 }
23
24 fn use_<'short,'long>(c: Contravariant<'short>,
25                       s: &'short isize,
26                       l: &'long isize,
27                       _where:Option<&'short &'long ()>) {
28
29     // Test whether Contravariant<'short> <: Contravariant<'long>.  Since
30     // 'short <= 'long, this would be true if the Contravariant type were
31     // covariant with respect to its parameter 'a.
32
33     let _: Contravariant<'long> = c; //~ ERROR mismatched types
34 }
35
36 fn main() {}