]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/regions-bounded-method-type-parameters-trait-bound.rs
f13d8a60894cb6b7ae9e3f4162cd52b427e49167
[rust.git] / src / test / compile-fail / regions-bounded-method-type-parameters-trait-bound.rs
1 // Copyright 2014 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 // Check that explicit region bounds are allowed on the various
12 // nominal types (but not on other types) and that they are type
13 // checked.
14
15 struct Inv<'a> { // invariant w/r/t 'a
16     x: &'a mut &'a isize
17 }
18
19 trait Foo<'x> {
20     fn method<'y:'x>(self, y: Inv<'y>);
21 }
22
23 fn caller1<'a,'b,F:Foo<'a>>(a: Inv<'a>, b: Inv<'b>, f: F) {
24     // Here the value provided for 'y is 'a, and hence 'a:'a holds.
25     f.method(a);
26 }
27
28 fn caller2<'a,'b,F:Foo<'a>>(a: Inv<'a>, b: Inv<'b>, f: F) {
29     // Here the value provided for 'y is 'b, and hence 'b:'a does not hold.
30     f.method(b); //~ ERROR cannot infer
31 }
32
33 fn caller3<'a,'b:'a,F:Foo<'a>>(a: Inv<'a>, b: Inv<'b>, f: F) {
34     // Here the value provided for 'y is 'b, and hence 'b:'a holds.
35     f.method(b);
36 }
37
38 fn main() { }