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